@stacksjs/cli 0.52.3 → 0.52.5

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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -2
  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 === false)
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.3",
4
+ "version": "0.52.5",
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/error-handling": "0.52.3",
54
- "@stacksjs/logging": "0.52.3",
55
- "@stacksjs/config": "0.52.3",
56
- "@stacksjs/path": "0.52.3",
57
- "@stacksjs/types": "0.52.3",
58
- "@stacksjs/utils": "0.52.3"
53
+ "@stacksjs/config": "0.52.5",
54
+ "@stacksjs/error-handling": "0.52.5",
55
+ "@stacksjs/logging": "0.52.5",
56
+ "@stacksjs/path": "0.52.5",
57
+ "@stacksjs/types": "0.52.5",
58
+ "@stacksjs/utils": "0.52.5"
59
59
  },
60
60
  "dependencies": {
61
61
  "kolorist": "1.8.0"
62
62
  },
63
63
  "devDependencies": {
64
- "@stacksjs/development": "0.52.3"
64
+ "@stacksjs/development": "0.52.5"
65
65
  },
66
66
  "scripts": {
67
67
  "build": "unbuild",