@stacksjs/cli 0.52.3 → 0.52.4
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/dist/index.mjs +1 -2
- package/package.json +8 -8
package/dist/index.mjs
CHANGED
|
@@ -56,7 +56,7 @@ function outro(text, options, error) {
|
|
|
56
56
|
time = time / 1e3;
|
|
57
57
|
time = Math.round(time * 100) / 100;
|
|
58
58
|
}
|
|
59
|
-
if (options.quiet ===
|
|
59
|
+
if (options.quiet === true)
|
|
60
60
|
return;
|
|
61
61
|
if (options.isError)
|
|
62
62
|
log.error(red(`in ${time}${options.useSeconds ? "s" : "ms"}`));
|
|
@@ -165,7 +165,6 @@ async function runCommand(command, options) {
|
|
|
165
165
|
return await exec(command, options);
|
|
166
166
|
}
|
|
167
167
|
async function runCommands(commands, options) {
|
|
168
|
-
console.log("runCommands", commands, options);
|
|
169
168
|
const results = [];
|
|
170
169
|
const numberOfCommands = commands.length;
|
|
171
170
|
if (!numberOfCommands) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.52.
|
|
4
|
+
"version": "0.52.4",
|
|
5
5
|
"packageManager": "pnpm@8.5.1",
|
|
6
6
|
"description": "The simple way to create beautiful CLIs.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
@@ -50,18 +50,18 @@
|
|
|
50
50
|
"cac": "^6.7.14",
|
|
51
51
|
"execa": "^7.1.1",
|
|
52
52
|
"ora": "^6.3.1",
|
|
53
|
-
"@stacksjs/
|
|
54
|
-
"@stacksjs/
|
|
55
|
-
"@stacksjs/
|
|
56
|
-
"@stacksjs/path": "0.52.
|
|
57
|
-
"@stacksjs/types": "0.52.
|
|
58
|
-
"@stacksjs/utils": "0.52.
|
|
53
|
+
"@stacksjs/config": "0.52.4",
|
|
54
|
+
"@stacksjs/error-handling": "0.52.4",
|
|
55
|
+
"@stacksjs/logging": "0.52.4",
|
|
56
|
+
"@stacksjs/path": "0.52.4",
|
|
57
|
+
"@stacksjs/types": "0.52.4",
|
|
58
|
+
"@stacksjs/utils": "0.52.4"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"kolorist": "1.8.0"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@stacksjs/development": "0.52.
|
|
64
|
+
"@stacksjs/development": "0.52.4"
|
|
65
65
|
},
|
|
66
66
|
"scripts": {
|
|
67
67
|
"build": "unbuild",
|