stacks 0.59.3 → 0.59.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.
Files changed (43) hide show
  1. package/buddy/package.json +2 -2
  2. package/buddy/src/commands/cloud.ts +1 -1
  3. package/package.json +1 -1
  4. package/buddy/dist/chunk-970e033f764e29fc.js +0 -19
  5. package/buddy/dist/chunk-d2428b387d843985.js +0 -2016
  6. package/buddy/dist/cli.d.ts +0 -1
  7. package/buddy/dist/cli.js +0 -107
  8. package/buddy/dist/commands/build.d.ts +0 -2
  9. package/buddy/dist/commands/changelog.d.ts +0 -2
  10. package/buddy/dist/commands/clean.d.ts +0 -2
  11. package/buddy/dist/commands/cloud.d.ts +0 -2
  12. package/buddy/dist/commands/commit.d.ts +0 -2
  13. package/buddy/dist/commands/configure.d.ts +0 -2
  14. package/buddy/dist/commands/create.d.ts +0 -2
  15. package/buddy/dist/commands/deploy.d.ts +0 -2
  16. package/buddy/dist/commands/dev.d.ts +0 -3
  17. package/buddy/dist/commands/dns.d.ts +0 -2
  18. package/buddy/dist/commands/domains.d.ts +0 -2
  19. package/buddy/dist/commands/fresh.d.ts +0 -2
  20. package/buddy/dist/commands/generate.d.ts +0 -2
  21. package/buddy/dist/commands/http.d.ts +0 -2
  22. package/buddy/dist/commands/index.d.ts +0 -31
  23. package/buddy/dist/commands/install.d.ts +0 -2
  24. package/buddy/dist/commands/key.d.ts +0 -2
  25. package/buddy/dist/commands/lint.d.ts +0 -2
  26. package/buddy/dist/commands/list.d.ts +0 -2
  27. package/buddy/dist/commands/make.d.ts +0 -2
  28. package/buddy/dist/commands/migrate.d.ts +0 -2
  29. package/buddy/dist/commands/ports.d.ts +0 -2
  30. package/buddy/dist/commands/prepublish.d.ts +0 -2
  31. package/buddy/dist/commands/projects.d.ts +0 -2
  32. package/buddy/dist/commands/release.d.ts +0 -2
  33. package/buddy/dist/commands/seed.d.ts +0 -2
  34. package/buddy/dist/commands/setup.d.ts +0 -4
  35. package/buddy/dist/commands/test.d.ts +0 -2
  36. package/buddy/dist/commands/tinker.d.ts +0 -2
  37. package/buddy/dist/commands/types.d.ts +0 -2
  38. package/buddy/dist/commands/upgrade.d.ts +0 -2
  39. package/buddy/dist/commands/version.d.ts +0 -2
  40. package/buddy/dist/index.d.ts +0 -1
  41. package/buddy/dist/index.js +0 -74
  42. package/buddy/dist/stacks +0 -0
  43. package/buddy/tsconfig.tsbuildinfo +0 -1
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/buddy",
3
3
  "type": "module",
4
- "version": "0.59.3",
4
+ "version": "0.59.4",
5
5
  "description": "Meet Buddy. The Stacks runtime.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
@@ -69,7 +69,7 @@
69
69
  "build": "bun --bun build.ts && bun run compile",
70
70
  "compile": "bun compile.ts",
71
71
  "typecheck": "bun --bun tsc --noEmit",
72
- "prepublishOnly": "bun --bun run build"
72
+ "prepublishOnly": "bun run build"
73
73
  },
74
74
  "peerDependencies": {
75
75
  "@stacksjs/actions": "workspace:*",
@@ -163,7 +163,7 @@ export function cloud(buddy: CLI) {
163
163
  // TODO: this should not be necessary but for some reason some buckets with versions aren't properly getting deleted
164
164
  // and because of that, we simply run the command several times, because eventually the versions will be deleted
165
165
  // and consequently the buckets will be deleted
166
- // the reason we are using 7 as the number of times to run the command is because it's the most amount of times I have had to run it to get it to delete everything
166
+ // the reason we are using 7 as the number of times to run the command is because its the most amount of times I have had to run it to get it to delete everything
167
167
  try {
168
168
  log.info('Finalizing the removal of your cloud resources.')
169
169
  log.info('This will take a few moments...')
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "stacks",
3
3
  "type": "module",
4
- "version": "0.59.3",
4
+ "version": "0.59.4",
5
5
  "description": "The Stacks framework.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
@@ -1,19 +0,0 @@
1
- var __create = Object.create;
2
- var __defProp = Object.defineProperty;
3
- var __getProtoOf = Object.getPrototypeOf;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __hasOwnProp = Object.prototype.hasOwnProperty;
6
- var __toESM = (mod, isNodeMode, target) => {
7
- target = mod != null ? __create(__getProtoOf(mod)) : {};
8
- const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
9
- for (let key of __getOwnPropNames(mod))
10
- if (!__hasOwnProp.call(to, key))
11
- __defProp(to, key, {
12
- get: () => mod[key],
13
- enumerable: true
14
- });
15
- return to;
16
- };
17
- var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
18
-
19
- export { __toESM, __commonJS };