watchful-cli 1.7.47 → 1.7.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/main.js +24 -4
- package/package.json +1 -1
package/bin/main.js
CHANGED
|
@@ -53,10 +53,30 @@ function main(command, argument, options) {
|
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
switch (command) {
|
|
56
|
-
case HELP_COMMAND:
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
56
|
+
case HELP_COMMAND: {
|
|
57
|
+
helpAction();
|
|
58
|
+
|
|
59
|
+
break;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
case BATCH_COMMAND: {
|
|
63
|
+
batchAction(wait, node, debug, release, bundler, quietly, metrics, entryFile, processes, transpiler, bundleFile, libDirectory, tempDirectory, sourceDirectory);
|
|
64
|
+
|
|
65
|
+
break;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
case VERSION_COMMAND: {
|
|
69
|
+
versionAction();
|
|
70
|
+
|
|
71
|
+
break;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
case INCREMENTAL_COMMAND: {
|
|
75
|
+
incrementalAction(wait, node, debug, release, bundler, quietly, metrics, entryFile, processes, transpiler, bundleFile, libDirectory, tempDirectory, sourceDirectory);
|
|
76
|
+
|
|
77
|
+
break;
|
|
78
|
+
}
|
|
79
|
+
|
|
60
80
|
}
|
|
61
81
|
}
|
|
62
82
|
|
package/package.json
CHANGED