We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8656fa9 commit 30da7c1Copy full SHA for 30da7c1
Makefile
@@ -204,6 +204,22 @@ else
204
NODE_ENV_WORKSHOPS ?= workshop
205
endif
206
207
+# Define command-line flags when invoking the Node executable:
208
+ifdef NODE_FLAGS
209
+ NODE_FLAGS_BENCHMARK := $(NODE_FLAGS)
210
+ NODE_FLAGS_EXAMPLES := $(NODE_FLAGS)
211
+ NODE_FLAGS_REPL := $(NODE_FLAGS)
212
+ NODE_FLAGS_TEST := $(NODE_FLAGS)
213
+ NODE_FLAGS_WORKSHOPS := $(NODE_FLAGS)
214
+else
215
+ NODE_FLAGS ?=
216
+ NODE_FLAGS_BENCHMARK ?=
217
+ NODE_FLAGS_EXAMPLES ?=
218
+ NODE_FLAGS_REPL ?=
219
+ NODE_FLAGS_TEST ?=
220
+ NODE_FLAGS_WORKSHOPS ?=
221
+endif
222
+
223
224
# DEPENDENCIES #
225
0 commit comments