@stacksjs/actions 0.52.2 → 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/bump.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  import { runCommand } from "@stacksjs/cli";
2
2
  import { frameworkPath } from "@stacksjs/path";
3
3
  await runCommand(
4
- 'npx bumpp ./package.json ./buddy/package.json ./core/**/package.json ./vscode/package.json --execute "pnpm buddy changelog" --all',
4
+ 'npx bumpp ./package.json ./buddy/package.json ./core/**/package.json ./vscode/package.json --execute "buddy changelog --quiet" --all',
5
5
  { verbose: true, cwd: frameworkPath(), shell: true }
6
6
  );
@@ -20,7 +20,6 @@ export async function runAction(action, options) {
20
20
  return err(`The specified action "${action}" does not exist`);
21
21
  const opts = parseOptions(options);
22
22
  const cmd = `npx tsx ${actionsPath(`${action}.ts ${opts}`)}`;
23
- console.log("cmd", cmd);
24
23
  if (options?.verbose)
25
24
  log.debug("running command:", italic(cmd));
26
25
  return options?.showSpinner ? await runCommands([cmd], options) : await runCommand(cmd, options);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/actions",
3
3
  "type": "module",
4
- "version": "0.52.2",
4
+ "version": "0.52.4",
5
5
  "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks actions.",
7
7
  "author": "Chris Breuer",
@@ -240,39 +240,39 @@
240
240
  "peerDependencies": {
241
241
  "markdown-it": "^13.0.1",
242
242
  "vue-component-meta": "^1.6.5",
243
- "@stacksjs/cli": "0.52.2",
244
- "@stacksjs/config": "0.52.2",
245
- "@stacksjs/database": "0.52.2",
246
- "@stacksjs/error-handling": "0.52.2",
247
- "@stacksjs/logging": "0.52.2",
248
- "@stacksjs/pages": "0.52.2",
249
- "@stacksjs/path": "0.52.2",
250
- "@stacksjs/security": "0.52.2",
251
- "@stacksjs/storage": "0.52.2",
252
- "@stacksjs/types": "0.52.2",
253
- "@stacksjs/utils": "0.52.2"
243
+ "@stacksjs/cli": "0.52.4",
244
+ "@stacksjs/config": "0.52.4",
245
+ "@stacksjs/database": "0.52.4",
246
+ "@stacksjs/error-handling": "0.52.4",
247
+ "@stacksjs/logging": "0.52.4",
248
+ "@stacksjs/pages": "0.52.4",
249
+ "@stacksjs/path": "0.52.4",
250
+ "@stacksjs/security": "0.52.4",
251
+ "@stacksjs/storage": "0.52.4",
252
+ "@stacksjs/types": "0.52.4",
253
+ "@stacksjs/utils": "0.52.4"
254
254
  },
255
255
  "dependencies": {
256
256
  "fast-glob": "^3.2.12",
257
257
  "fs-extra": "^11.1.1",
258
258
  "markdown-it": "^13.0.1",
259
259
  "vue-component-meta": "^1.6.5",
260
- "@stacksjs/cli": "0.52.2",
261
- "@stacksjs/config": "0.52.2",
262
- "@stacksjs/database": "0.52.2",
263
- "@stacksjs/error-handling": "0.52.2",
264
- "@stacksjs/logging": "0.52.2",
265
- "@stacksjs/pages": "0.52.2",
266
- "@stacksjs/path": "0.52.2",
267
- "@stacksjs/security": "0.52.2",
268
- "@stacksjs/storage": "0.52.2",
269
- "@stacksjs/strings": "0.52.2",
270
- "@stacksjs/utils": "0.52.2"
260
+ "@stacksjs/cli": "0.52.4",
261
+ "@stacksjs/config": "0.52.4",
262
+ "@stacksjs/database": "0.52.4",
263
+ "@stacksjs/error-handling": "0.52.4",
264
+ "@stacksjs/logging": "0.52.4",
265
+ "@stacksjs/pages": "0.52.4",
266
+ "@stacksjs/path": "0.52.4",
267
+ "@stacksjs/security": "0.52.4",
268
+ "@stacksjs/storage": "0.52.4",
269
+ "@stacksjs/strings": "0.52.4",
270
+ "@stacksjs/utils": "0.52.4"
271
271
  },
272
272
  "devDependencies": {
273
273
  "unbuild": "^1.2.1",
274
- "@stacksjs/development": "0.52.2",
275
- "@stacksjs/types": "0.52.2"
274
+ "@stacksjs/development": "0.52.4",
275
+ "@stacksjs/types": "0.52.4"
276
276
  },
277
277
  "scripts": {
278
278
  "build": "unbuild",