stacks 0.59.9 → 0.59.11
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/package.json +2 -2
- package/buddy/compile.ts +0 -9
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.11",
|
|
5
5
|
"description": "Meet Buddy. The Stacks runtime.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"license": "MIT",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"scripts": {
|
|
68
68
|
"buddy": "bunx ./src/cli.ts",
|
|
69
69
|
"build": "bun --bun build.ts && bun run compile",
|
|
70
|
-
"compile": "bun
|
|
70
|
+
"compile": "bun build ./bin/cli.ts --compile --minify --sourcemap --outfile dist/stacks",
|
|
71
71
|
"typecheck": "bun --bun tsc --noEmit",
|
|
72
72
|
"prepublishOnly": "bun run build"
|
|
73
73
|
},
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stacks",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.59.
|
|
4
|
+
"version": "0.59.11",
|
|
5
5
|
"description": "The Stacks framework.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"license": "MIT",
|
|
@@ -347,7 +347,7 @@
|
|
|
347
347
|
],
|
|
348
348
|
"scripts": {
|
|
349
349
|
"buddy": "bun --bun run ./buddy/src/cli.ts",
|
|
350
|
-
"build": "bun ./build.ts",
|
|
350
|
+
"build": "cd config && bun run build && cd ../env && bun run build && cd ../storage && bun run build && cd .. && bun ./build.ts",
|
|
351
351
|
"up": "bunx taze major -I",
|
|
352
352
|
"publish:framework": "./scripts/publish",
|
|
353
353
|
"publish:dummy-libs": "bun --bun run generate:entries && bunx pnpm --filter './libs/components/vue' --filter './libs/components/web' --filter './libs/functions' publish --access public --no-git-checks",
|
package/buddy/compile.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { log, runCommand } from '@stacksjs/cli'
|
|
2
|
-
|
|
3
|
-
// compiles the buddy binary
|
|
4
|
-
const result = await runCommand('bun build ./bin/cli.ts --compile --minify --sourcemap --outfile dist/stacks', {
|
|
5
|
-
cwd: import.meta.dir,
|
|
6
|
-
})
|
|
7
|
-
|
|
8
|
-
if (result.isErr())
|
|
9
|
-
log.error(result.error)
|