stacks 0.58.15 → 0.58.19
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/core/scripts/{release-core → publish} +2 -2
- package/core/src/actions/package.json +1 -1
- package/core/src/ai/package.json +1 -1
- package/core/src/alias/package.json +1 -1
- package/core/src/analytics/package.json +1 -1
- package/core/src/api/package.json +1 -1
- package/core/src/arrays/package.json +1 -1
- package/core/src/auth/package.json +1 -1
- package/core/src/buddy/package.json +1 -1
- package/core/src/build/package.json +1 -1
- package/core/src/bun-create/bud/package.json +7 -10
- package/core/src/bun-create/buddy/package.json +7 -10
- package/core/src/bun-create/stack/package.json +7 -10
- package/core/src/bun-create/stacks/package.json +7 -10
- package/core/src/bun-create/stx/package.json +7 -10
- package/core/src/bun-plugin-yaml/package.json +1 -1
- package/core/src/cache/package.json +1 -1
- package/core/src/chat/package.json +1 -1
- package/core/src/cli/package.json +1 -1
- package/core/src/cloud/package.json +3 -3
- package/core/src/cloud/src/cloud/aws-sdk-layer/nodejs/package.json +1 -1
- package/core/src/cloud/src/server/package.json +1 -1
- package/core/src/collections/package.json +1 -1
- package/core/src/config/package.json +1 -1
- package/core/src/database/package.json +1 -1
- package/core/src/datetime/package.json +1 -1
- package/core/src/desktop/package.json +1 -1
- package/core/src/development/package.json +1 -1
- package/core/src/dns/package.json +4 -4
- package/core/src/docs/package.json +1 -1
- package/core/src/email/package.json +1 -1
- package/core/src/enums/package.json +1 -1
- package/core/src/env/package.json +1 -1
- package/core/src/error-handling/package.json +1 -1
- package/core/src/eslint-config/package.json +1 -1
- package/core/src/events/package.json +1 -1
- package/core/src/faker/package.json +1 -1
- package/core/src/git/package.json +1 -1
- package/core/src/health/package.json +1 -1
- package/core/src/http/package.json +1 -1
- package/core/src/lint/package.json +1 -1
- package/core/src/logging/package.json +1 -1
- package/core/src/music/package.json +1 -2
- package/core/src/notifications/package.json +1 -1
- package/core/src/objects/package.json +1 -1
- package/core/src/orm/package.json +1 -1
- package/core/src/path/package.json +1 -1
- package/core/src/payments/package.json +1 -1
- package/core/src/push/package.json +1 -1
- package/core/src/query-builder/package.json +1 -1
- package/core/src/queue/package.json +1 -1
- package/core/src/realtime/package.json +1 -1
- package/core/src/repl/package.json +1 -1
- package/core/src/router/package.json +1 -1
- package/core/src/scheduler/package.json +1 -1
- package/core/src/search-engine/package.json +1 -1
- package/core/src/security/package.json +1 -1
- package/core/src/server/package.json +1 -1
- package/core/src/signals/package.json +1 -1
- package/core/src/slug/package.json +1 -1
- package/core/src/sms/package.json +1 -1
- package/core/src/storage/package.json +1 -1
- package/core/src/strings/package.json +1 -1
- package/core/src/tables/package.json +1 -1
- package/core/src/testing/package.json +1 -1
- package/core/src/tinker/package.json +1 -1
- package/core/src/tunnel/package.json +1 -1
- package/core/src/types/package.json +2 -2
- package/core/src/ui/package.json +1 -1
- package/core/src/utils/package.json +1 -1
- package/core/src/validation/package.json +1 -1
- package/core/src/vite/package.json +1 -1
- package/core/src/vite-plugin-vue-layouts/package.json +1 -1
- package/core/src/whois/package.json +1 -1
- package/core/src/x-ray/package.json +1 -1
- package/ide/vscode/package.json +1 -1
- package/package.json +2 -2
- package/core/scripts/publish.ts +0 -32
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
script_dir=$(realpath $(dirname "$0"))
|
|
5
5
|
|
|
6
6
|
# Get all directories in the core path
|
|
7
|
-
dirs=$(find "$script_dir/../src" -type d
|
|
7
|
+
dirs=$(find "$script_dir/../src" -type d)
|
|
8
8
|
|
|
9
9
|
# Check if no directories found
|
|
10
10
|
if [ -z "$dirs" ]; then
|
|
@@ -25,7 +25,7 @@ for dir in $dirs; do
|
|
|
25
25
|
|
|
26
26
|
# Check if the build command was successful
|
|
27
27
|
if [ $? -ne 0 ]; then
|
|
28
|
-
echo "Failed to
|
|
28
|
+
echo "Failed to publish $dir"
|
|
29
29
|
exit 1
|
|
30
30
|
fi
|
|
31
31
|
|
package/core/src/ai/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bun-examples/bud",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.58.
|
|
4
|
+
"version": "0.58.19",
|
|
5
5
|
"description": "Your project description.",
|
|
6
6
|
"author": "your-name <your-email>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -129,15 +129,12 @@
|
|
|
129
129
|
}
|
|
130
130
|
},
|
|
131
131
|
"workspaces": [
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
"stacks/vcs/*",
|
|
139
|
-
"stacks",
|
|
140
|
-
"storage/framework/*"
|
|
132
|
+
"storage/framework",
|
|
133
|
+
"storage/framework/libs/*",
|
|
134
|
+
"storage/framework/views/*",
|
|
135
|
+
"storage/framework/core/src/*",
|
|
136
|
+
"storage/framework/core/src/cloud/src/server",
|
|
137
|
+
"storage/framework/core/src/bun-create/*"
|
|
141
138
|
],
|
|
142
139
|
"bun-create": {
|
|
143
140
|
"preinstall": [
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bun-examples/buddy",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.58.
|
|
4
|
+
"version": "0.58.19",
|
|
5
5
|
"description": "Your project description.",
|
|
6
6
|
"author": "your-name <your-email>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -129,15 +129,12 @@
|
|
|
129
129
|
}
|
|
130
130
|
},
|
|
131
131
|
"workspaces": [
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
"stacks/vcs/*",
|
|
139
|
-
"stacks",
|
|
140
|
-
"storage/framework/*"
|
|
132
|
+
"storage/framework",
|
|
133
|
+
"storage/framework/libs/*",
|
|
134
|
+
"storage/framework/views/*",
|
|
135
|
+
"storage/framework/core/src/*",
|
|
136
|
+
"storage/framework/core/src/cloud/src/server",
|
|
137
|
+
"storage/framework/core/src/bun-create/*"
|
|
141
138
|
],
|
|
142
139
|
"bun-create": {
|
|
143
140
|
"preinstall": [
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bun-examples/stack",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.58.
|
|
4
|
+
"version": "0.58.19",
|
|
5
5
|
"description": "Your project description.",
|
|
6
6
|
"author": "your-name <your-email>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -129,15 +129,12 @@
|
|
|
129
129
|
}
|
|
130
130
|
},
|
|
131
131
|
"workspaces": [
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
"stacks/vcs/*",
|
|
139
|
-
"stacks",
|
|
140
|
-
"storage/framework/*"
|
|
132
|
+
"storage/framework",
|
|
133
|
+
"storage/framework/libs/*",
|
|
134
|
+
"storage/framework/views/*",
|
|
135
|
+
"storage/framework/core/src/*",
|
|
136
|
+
"storage/framework/core/src/cloud/src/server",
|
|
137
|
+
"storage/framework/core/src/bun-create/*"
|
|
141
138
|
],
|
|
142
139
|
"bun-create": {
|
|
143
140
|
"preinstall": [
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bun-examples/stacks",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.58.
|
|
4
|
+
"version": "0.58.19",
|
|
5
5
|
"description": "Your project description.",
|
|
6
6
|
"author": "your-name <your-email>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -129,15 +129,12 @@
|
|
|
129
129
|
}
|
|
130
130
|
},
|
|
131
131
|
"workspaces": [
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
"stacks/vcs/*",
|
|
139
|
-
"stacks",
|
|
140
|
-
"storage/framework/*"
|
|
132
|
+
"storage/framework",
|
|
133
|
+
"storage/framework/libs/*",
|
|
134
|
+
"storage/framework/views/*",
|
|
135
|
+
"storage/framework/core/src/*",
|
|
136
|
+
"storage/framework/core/src/cloud/src/server",
|
|
137
|
+
"storage/framework/core/src/bun-create/*"
|
|
141
138
|
],
|
|
142
139
|
"bun-create": {
|
|
143
140
|
"preinstall": [
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bun-examples/stx",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.58.
|
|
4
|
+
"version": "0.58.19",
|
|
5
5
|
"description": "Your project description.",
|
|
6
6
|
"author": "your-name <your-email>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -129,15 +129,12 @@
|
|
|
129
129
|
}
|
|
130
130
|
},
|
|
131
131
|
"workspaces": [
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
"stacks/vcs/*",
|
|
139
|
-
"stacks",
|
|
140
|
-
"storage/framework/*"
|
|
132
|
+
"storage/framework",
|
|
133
|
+
"storage/framework/libs/*",
|
|
134
|
+
"storage/framework/views/*",
|
|
135
|
+
"storage/framework/core/src/*",
|
|
136
|
+
"storage/framework/core/src/cloud/src/server",
|
|
137
|
+
"storage/framework/core/src/bun-create/*"
|
|
141
138
|
],
|
|
142
139
|
"bun-create": {
|
|
143
140
|
"preinstall": [
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/cloud",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.58.
|
|
4
|
+
"version": "0.58.19",
|
|
5
5
|
"description": "The Stacks cloud/serverless integration & implementation.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"license": "MIT",
|
|
@@ -102,8 +102,8 @@
|
|
|
102
102
|
"@stacksjs/storage": "workspace:*",
|
|
103
103
|
"@stacksjs/utils": "workspace:*",
|
|
104
104
|
"@stacksjs/validation": "workspace:*",
|
|
105
|
-
"aws-cdk": "^2.
|
|
106
|
-
"aws-cdk-lib": "^2.
|
|
105
|
+
"aws-cdk": "^2.119.0",
|
|
106
|
+
"aws-cdk-lib": "^2.119.0",
|
|
107
107
|
"aws4fetch": "^1.0.17",
|
|
108
108
|
"constructs": "^10.3.0"
|
|
109
109
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/dns",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.58.
|
|
4
|
+
"version": "0.58.19",
|
|
5
5
|
"description": "Easily manage your DNS.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"license": "MIT",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"@stacksjs/path": "workspace:*",
|
|
58
58
|
"@stacksjs/storage": "workspace:*",
|
|
59
59
|
"@stacksjs/whois": "workspace:*",
|
|
60
|
-
"aws-cdk-lib": "^2.
|
|
60
|
+
"aws-cdk-lib": "^2.119.0"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"@aws-sdk/client-route-53": "^3.490.0",
|
|
@@ -67,10 +67,10 @@
|
|
|
67
67
|
"@stacksjs/storage": "workspace:*",
|
|
68
68
|
"@stacksjs/strings": "workspace:*",
|
|
69
69
|
"@stacksjs/whois": "workspace:*",
|
|
70
|
-
"aws-cdk-lib": "^2.
|
|
70
|
+
"aws-cdk-lib": "^2.119.0"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@stacksjs/development": "workspace:*",
|
|
74
|
-
"aws-cdk-lib": "^2.
|
|
74
|
+
"aws-cdk-lib": "^2.119.0"
|
|
75
75
|
}
|
|
76
76
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.58.
|
|
4
|
+
"version": "0.58.19",
|
|
5
5
|
"description": "The Stacks.js ESLint config preset, heavily inspired by Anthony's ESLint config.",
|
|
6
6
|
"author": "Anthony Fu <anthonyfu117@hotmail.com> (https://github.com/antfu/)",
|
|
7
7
|
"license": "MIT",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/music",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.58.
|
|
4
|
+
"version": "0.58.19",
|
|
5
5
|
"description": "Stacks Music",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"license": "MIT",
|
|
@@ -38,7 +38,6 @@
|
|
|
38
38
|
"build:app": "bun --bun vite build ../../../storage/framework/desktop/music -c ../../src/vite/src/music.ts",
|
|
39
39
|
"dev": "bun --bun vite serve ../../../storage/framework/desktop/music -c ../../src/vite/src/music.ts",
|
|
40
40
|
"dev:app": "tauri dev",
|
|
41
|
-
"prepublishOnly": "bun --bun run build",
|
|
42
41
|
"typecheck": "bun --bun tsc --noEmit"
|
|
43
42
|
},
|
|
44
43
|
"devDependencies": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/types",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.58.
|
|
4
|
+
"version": "0.58.19",
|
|
5
5
|
"description": "The Stacks framework types.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"license": "MIT",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"vue": "^3.4.10"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
|
-
"aws-cdk-lib": "^2.
|
|
83
|
+
"aws-cdk-lib": "^2.119.0",
|
|
84
84
|
"typescript": "^5.3.3"
|
|
85
85
|
}
|
|
86
86
|
}
|
package/core/src/ui/package.json
CHANGED
package/ide/vscode/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stacks",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.58.
|
|
4
|
+
"version": "0.58.19",
|
|
5
5
|
"description": "The Stacks framework.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"license": "MIT",
|
|
@@ -343,7 +343,7 @@
|
|
|
343
343
|
"build": "./core/scripts/build",
|
|
344
344
|
"dev": "bunx pnpm --filter='./core/src/**' dev",
|
|
345
345
|
"up": "bunx taze major -I",
|
|
346
|
-
"publish:framework": "./core/scripts/
|
|
346
|
+
"publish:framework": "./core/scripts/publish",
|
|
347
347
|
"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",
|
|
348
348
|
"fresh": "bun buddy fresh",
|
|
349
349
|
"clean": "bun buddy clean",
|
package/core/scripts/publish.ts
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { italic } from '@stacksjs/cli'
|
|
2
|
-
import { log } from '@stacksjs/logging'
|
|
3
|
-
|
|
4
|
-
// import { italic } from '@stacksjs/cli'
|
|
5
|
-
// import { ExitCode } from '@stacksjs/types'
|
|
6
|
-
|
|
7
|
-
const version = 'alpha' // todo: get version from package.json
|
|
8
|
-
|
|
9
|
-
log.info(`Getting all packages published to version: ${version}`)
|
|
10
|
-
|
|
11
|
-
// then, we need to publish all the packages (a prepublish hook builds them)
|
|
12
|
-
log.info(italic('Publishing all packages...'))
|
|
13
|
-
|
|
14
|
-
// move dts files
|
|
15
|
-
|
|
16
|
-
Bun.spawn(['bun', 'server.ts'], {
|
|
17
|
-
stdout: 'pipe',
|
|
18
|
-
cwd: import.meta.dir,
|
|
19
|
-
})
|
|
20
|
-
|
|
21
|
-
// Bun.spawn(['npm', 'run', 'dev'], {
|
|
22
|
-
// stdout: 'pipe',
|
|
23
|
-
// cwd: join(import.meta.dir, 'client'),
|
|
24
|
-
// })
|
|
25
|
-
|
|
26
|
-
// console.log(
|
|
27
|
-
// 'If things work properly, see http://localhost:5173',
|
|
28
|
-
// )
|
|
29
|
-
|
|
30
|
-
// await runCommand('bun publish --access public')
|
|
31
|
-
|
|
32
|
-
log.success(`Successfully released v${version}`)
|