@stacksjs/buddy 0.59.8 → 0.59.10
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/cli.js +1 -1
- package/dist/stacks +0 -0
- package/package.json +2 -2
- package/src/cli.ts +1 -1
package/dist/cli.js
CHANGED
|
@@ -43,7 +43,7 @@ async function main() {
|
|
|
43
43
|
key(buddy);
|
|
44
44
|
const isAppKeySet = await ensureProjectIsInitialized();
|
|
45
45
|
if (isAppKeySet) {
|
|
46
|
-
log.
|
|
46
|
+
log.debug("Project is initialized");
|
|
47
47
|
} else {
|
|
48
48
|
log.warn("Your `APP_KEY` is not yet");
|
|
49
49
|
process.exit(1);
|
package/dist/stacks
CHANGED
|
Binary file
|
package/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.10",
|
|
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/src/cli.ts
CHANGED
|
@@ -29,7 +29,7 @@ async function main() {
|
|
|
29
29
|
// before running any commands, ensure the project is already initialized
|
|
30
30
|
const isAppKeySet = await ensureProjectIsInitialized()
|
|
31
31
|
if (isAppKeySet) {
|
|
32
|
-
log.
|
|
32
|
+
log.debug('Project is initialized')
|
|
33
33
|
}
|
|
34
34
|
else {
|
|
35
35
|
log.warn('Your `APP_KEY` is not yet')
|