@stacksjs/actions 0.56.23 → 0.56.27

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 "buddy changelog --quiet" --all',
4
+ 'npx bumpp ./package.json ./core/**/package.json ./ide/vscode/package.json --execute "buddy changelog --quiet" --all',
5
5
  { verbose: true, cwd: frameworkPath(), shell: true }
6
6
  );
@@ -0,0 +1,3 @@
1
+ import { parseOptions } from "@stacksjs/cli";
2
+ const options = parseOptions();
3
+ console.log("options", options);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/actions",
3
3
  "type": "module",
4
- "version": "0.56.23",
4
+ "version": "0.56.27",
5
5
  "packageManager": "pnpm@8.6.5",
6
6
  "description": "The Stacks actions.",
7
7
  "author": "Chris Breuer",
@@ -166,8 +166,8 @@
166
166
  "import": "./dist/copy-types.mjs"
167
167
  },
168
168
  "./deploy": {
169
- "types": "./dist/deploy.d.ts",
170
- "import": "./dist/deploy.mjs"
169
+ "types": "./dist/deploy/index.d.ts",
170
+ "import": "./dist/deploy/index.mjs"
171
171
  },
172
172
  "./examples": {
173
173
  "types": "./dist/examples.d.ts",
@@ -223,7 +223,6 @@
223
223
  },
224
224
  "./*": "./*"
225
225
  },
226
- "main": "dist/index.mjs",
227
226
  "module": "dist/index.mjs",
228
227
  "types": "dist/index.d.ts",
229
228
  "contributors": [
@@ -236,37 +235,37 @@
236
235
  "peerDependencies": {
237
236
  "markdown-it": "^13.0.1",
238
237
  "vue-component-meta": "^1.8.3",
239
- "@stacksjs/cli": "0.56.23",
240
- "@stacksjs/config": "0.56.23",
241
- "@stacksjs/database": "0.56.23",
242
- "@stacksjs/error-handling": "0.56.23",
243
- "@stacksjs/logging": "0.56.23",
244
- "@stacksjs/pages": "0.56.23",
245
- "@stacksjs/path": "0.56.23",
246
- "@stacksjs/security": "0.56.23",
247
- "@stacksjs/storage": "0.56.23",
248
- "@stacksjs/types": "0.56.23",
249
- "@stacksjs/utils": "0.56.23"
238
+ "@stacksjs/cli": "0.56.27",
239
+ "@stacksjs/config": "0.56.27",
240
+ "@stacksjs/database": "0.56.27",
241
+ "@stacksjs/error-handling": "0.56.27",
242
+ "@stacksjs/logging": "0.56.27",
243
+ "@stacksjs/pages": "0.56.27",
244
+ "@stacksjs/path": "0.56.27",
245
+ "@stacksjs/security": "0.56.27",
246
+ "@stacksjs/storage": "0.56.27",
247
+ "@stacksjs/types": "0.56.27",
248
+ "@stacksjs/utils": "0.56.27"
250
249
  },
251
250
  "dependencies": {
252
251
  "fast-glob": "^3.2.12",
253
252
  "fs-extra": "^11.1.1",
254
253
  "markdown-it": "^13.0.1",
255
254
  "vue-component-meta": "^1.8.3",
256
- "@stacksjs/cli": "0.56.23",
257
- "@stacksjs/config": "0.56.23",
258
- "@stacksjs/database": "0.56.23",
259
- "@stacksjs/error-handling": "0.56.23",
260
- "@stacksjs/logging": "0.56.23",
261
- "@stacksjs/pages": "0.56.23",
262
- "@stacksjs/path": "0.56.23",
263
- "@stacksjs/security": "0.56.23",
264
- "@stacksjs/storage": "0.56.23",
265
- "@stacksjs/strings": "0.56.23",
266
- "@stacksjs/utils": "0.56.23"
255
+ "@stacksjs/cli": "0.56.27",
256
+ "@stacksjs/config": "0.56.27",
257
+ "@stacksjs/database": "0.56.27",
258
+ "@stacksjs/error-handling": "0.56.27",
259
+ "@stacksjs/logging": "0.56.27",
260
+ "@stacksjs/pages": "0.56.27",
261
+ "@stacksjs/path": "0.56.27",
262
+ "@stacksjs/security": "0.56.27",
263
+ "@stacksjs/storage": "0.56.27",
264
+ "@stacksjs/strings": "0.56.27",
265
+ "@stacksjs/utils": "0.56.27"
267
266
  },
268
267
  "devDependencies": {
269
- "@stacksjs/development": "0.56.23"
268
+ "@stacksjs/development": "0.56.27"
270
269
  },
271
270
  "scripts": {
272
271
  "build": "unbuild",
package/dist/deploy.mjs DELETED
@@ -1,6 +0,0 @@
1
- import { runCommands } from "@stacksjs/cli";
2
- import { frameworkPath } from "@stacksjs/path";
3
- await runCommands([
4
- "pnpm buddy clean",
5
- "pnpm install"
6
- ], { cwd: frameworkPath(), verbose: true });
File without changes