@aerostack/cli 1.5.45 → 1.5.46
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/run.js +1 -1
- package/package.json +1 -1
package/bin/run.js
CHANGED
|
@@ -28,7 +28,7 @@ const INSTALL_DIR = process.env.AEROSTACK_INSTALL_DIR || join(HOME, ".aerostack"
|
|
|
28
28
|
|
|
29
29
|
const args = process.argv.slice(2);
|
|
30
30
|
const command = args[0];
|
|
31
|
-
const NODE_COMMANDS = ['
|
|
31
|
+
const NODE_COMMANDS = ['add', 'init', 'list', 'login', 'publish'];
|
|
32
32
|
|
|
33
33
|
if (command && NODE_COMMANDS.includes(command)) {
|
|
34
34
|
// Dispatch to Node.js implementation
|