File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -55,10 +55,18 @@ install_node_addons_list_addons_flags := "--pattern $(node_addons_pattern)"
55
55
#
56
56
# ## Notes
57
57
#
58
- # - If unable to install a native add-on, the target prints an error message and proceeds to try installing the next add-on.
58
+ # - When `FAST_FAIL` is `0`, if unable to install a native add-on, the recipe prints an error message and proceeds to try installing the next add-on.
59
+ #
60
+ # @param {integer} [FAST_FAIL] - flag indicating whether to immediately exit if unable to install a native add-on (default: 1)
59
61
#
60
62
# @example
61
63
# make install-node-addons
64
+ #
65
+ # @example
66
+ # FAST_FAIL=0 make install-node-addons
67
+ #
68
+ # @example
69
+ # FAST_FAIL=1 make install-node-addons
62
70
# /
63
71
install-node-addons : $(NODE_MODULES ) clean-node-addons
64
72
ifeq ($(FAIL_FAST ) , true)
@@ -96,8 +104,20 @@ endif
96
104
# /
97
105
# Removes all compiled and generated files for Node.js native add-ons.
98
106
#
107
+ # ## Notes
108
+ #
109
+ # - When `FAST_FAIL` is `0`, if unable to clean a native add-on, the recipe prints an error message and proceeds to try cleaning the next add-on.
110
+ #
111
+ # @param {integer} [FAST_FAIL] - flag indicating whether to immediately exit if unable to clean a native add-on (default: 1)
112
+ #
99
113
# @example
100
114
# make clean-node-addons
115
+ #
116
+ # @example
117
+ # FAST_FAIL=0 make clean-node-addons
118
+ #
119
+ # @example
120
+ # FAST_FAIL=1 make clean-node-addons
101
121
# /
102
122
clean-node-addons : $(NODE_MODULES )
103
123
ifeq ($(FAIL_FAST ) , true)
You can’t perform that action at this time.
0 commit comments