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.
- package/buddy/package.json +2 -2
- package/buddy/src/commands/cloud.ts +1 -1
- package/package.json +1 -1
- package/buddy/dist/chunk-970e033f764e29fc.js +0 -19
- package/buddy/dist/chunk-d2428b387d843985.js +0 -2016
- package/buddy/dist/cli.d.ts +0 -1
- package/buddy/dist/cli.js +0 -107
- package/buddy/dist/commands/build.d.ts +0 -2
- package/buddy/dist/commands/changelog.d.ts +0 -2
- package/buddy/dist/commands/clean.d.ts +0 -2
- package/buddy/dist/commands/cloud.d.ts +0 -2
- package/buddy/dist/commands/commit.d.ts +0 -2
- package/buddy/dist/commands/configure.d.ts +0 -2
- package/buddy/dist/commands/create.d.ts +0 -2
- package/buddy/dist/commands/deploy.d.ts +0 -2
- package/buddy/dist/commands/dev.d.ts +0 -3
- package/buddy/dist/commands/dns.d.ts +0 -2
- package/buddy/dist/commands/domains.d.ts +0 -2
- package/buddy/dist/commands/fresh.d.ts +0 -2
- package/buddy/dist/commands/generate.d.ts +0 -2
- package/buddy/dist/commands/http.d.ts +0 -2
- package/buddy/dist/commands/index.d.ts +0 -31
- package/buddy/dist/commands/install.d.ts +0 -2
- package/buddy/dist/commands/key.d.ts +0 -2
- package/buddy/dist/commands/lint.d.ts +0 -2
- package/buddy/dist/commands/list.d.ts +0 -2
- package/buddy/dist/commands/make.d.ts +0 -2
- package/buddy/dist/commands/migrate.d.ts +0 -2
- package/buddy/dist/commands/ports.d.ts +0 -2
- package/buddy/dist/commands/prepublish.d.ts +0 -2
- package/buddy/dist/commands/projects.d.ts +0 -2
- package/buddy/dist/commands/release.d.ts +0 -2
- package/buddy/dist/commands/seed.d.ts +0 -2
- package/buddy/dist/commands/setup.d.ts +0 -4
- package/buddy/dist/commands/test.d.ts +0 -2
- package/buddy/dist/commands/tinker.d.ts +0 -2
- package/buddy/dist/commands/types.d.ts +0 -2
- package/buddy/dist/commands/upgrade.d.ts +0 -2
- package/buddy/dist/commands/version.d.ts +0 -2
- package/buddy/dist/index.d.ts +0 -1
- package/buddy/dist/index.js +0 -74
- package/buddy/dist/stacks +0 -0
- package/buddy/tsconfig.tsbuildinfo +0 -1
package/buddy/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/buddy",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.59.
|
|
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
|
|
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
|
|
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
|
|
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,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 };
|