You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This target installs package dependencies by executing [`npm install`][1]. Packages will be installed in a local `node_modules` directory relative to the project's `package.json` file.
10
+
# Run Node install sequence.
18
11
#
19
-
#[1]: https://docs.npmjs.com/cli/install
12
+
#This target runs the Node install sequence, including installing node module dependencies and compiling native add-ons.
Copy file name to clipboardExpand all lines: tools/make/lib/node/addons.mk
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ endif
28
28
#
29
29
# This target installs native add-ons. If unable to install a native add-on, the target prints an error message and proceeds to try installing the next add-on.
# This target installs package dependencies by executing [`npm install`][1]. Packages will be installed in a local `node_modules` directory relative to the project's `package.json` file.
13
+
#
14
+
# [1]: https://docs.npmjs.com/cli/install
15
+
16
+
install-node-modules: $(ROOT_PACKAGE_JSON)
17
+
$(QUIET)$(NPM) install
18
+
19
+
.PHONY: install-node-modules
20
+
21
+
22
+
# Remove node module dependencies.
23
+
#
24
+
# This target cleans the `node_modules` directory by removing it entirely.
0 commit comments