Skip to content

Commit c8be56e

Browse files
committed
chore: wip
chore: wip chore: wip
1 parent 2bde01b commit c8be56e

File tree

151 files changed

+273
-341
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+273
-341
lines changed

bun.lockb

-888 Bytes
Binary file not shown.

storage/framework/api/build.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ const result = await Bun.build({
88
entrypoints: ['./dev.ts'],
99
outdir: './dist',
1010
format: 'esm',
11-
sourcemap: 'linked',
12-
minify: true,
11+
// sourcemap: 'linked',
12+
minify: false,
1313
target: 'bun',
1414
})
1515

storage/framework/cloud/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,12 @@
3030
"import": "./dist/index.js"
3131
},
3232
"./*": {
33-
"bun": "./src/*",
3433
"import": "./dist/*"
3534
}
3635
},
3736
"module": "dist/index.js",
3837
"types": "dist/index.d.ts",
39-
"files": ["README.md", "dist", "src"],
38+
"files": ["README.md", "dist"],
4039
"scripts": {
4140
"bootstrap": "bunx --bun cdk bootstrap",
4241
"deploy": "cd .. && bun run build && cd ./docs && bun run build && cd ../cloud && bunx --bun cdk deploy --require-approval never",

storage/framework/core/actions/build.ts

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ const result = await Bun.build({
1010
outdir: './dist',
1111
format: 'esm',
1212
target: 'bun',
13-
sourcemap: 'linked',
14-
minify: true,
13+
// // sourcemap: 'linked',
14+
minify: false,
15+
1516
entrypoints: [
1617
'./src/build/component-libs.ts',
1718
'./src/build/core.ts',
@@ -59,24 +60,6 @@ const result = await Bun.build({
5960
'./src/upgrade.ts',
6061
],
6162

62-
external: [
63-
'@stacksjs/api',
64-
'@stacksjs/path',
65-
'@stacksjs/cli',
66-
'@stacksjs/types',
67-
'@stacksjs/logging',
68-
'@stacksjs/enums',
69-
'@stacksjs/storage',
70-
'@stacksjs/utils',
71-
'@stacksjs/strings',
72-
'@stacksjs/config',
73-
'@stacksjs/error-handling',
74-
'@stacksjs/env',
75-
'@stacksjs/security',
76-
'@stacksjs/database',
77-
'bun',
78-
],
79-
8063
plugins: [
8164
dts({
8265
root: './src',

storage/framework/core/actions/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,17 @@
2727
],
2828
"exports": {
2929
".": {
30-
"bun": "./src/index.ts",
3130
"types": "./dist/index.d.ts",
3231
"import": "./dist/index.js"
3332
},
3433
"./*": {
35-
"bun": "./src/*",
3634
"types": "./dist/*.d.ts",
3735
"import": "./dist/*"
3836
}
3937
},
4038
"module": "dist/index.js",
4139
"types": "dist/index.d.ts",
42-
"files": ["README.md", "dist", "src"],
40+
"files": ["README.md", "dist"],
4341
"scripts": {
4442
"build": "bun build.ts",
4543
"typecheck": "bun tsc --noEmit",

storage/framework/core/ai/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const result = await Bun.build({
1010
entrypoints: ['./src/index.ts'],
1111
outdir: './dist',
1212
format: 'esm',
13-
sourcemap: 'linked',
13+
// sourcemap: 'linked',
1414
target: 'bun',
1515
minify: true,
1616
plugins: [

storage/framework/core/ai/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,12 @@
3030
"import": "./dist/index.js"
3131
},
3232
"./*": {
33-
"bun": "./src/*",
3433
"import": "./dist/*"
3534
}
3635
},
3736
"module": "dist/index.js",
3837
"types": "dist/index.d.ts",
39-
"files": ["README.md", "dist", "src"],
38+
"files": ["README.md", "dist"],
4039
"scripts": {
4140
"build": "bun build.ts",
4241
"typecheck": "bun tsc --noEmit",

storage/framework/core/alias/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const result = await Bun.build({
99
entrypoints: ['./src/index.ts'],
1010
outdir: './dist',
1111
format: 'esm',
12-
sourcemap: 'linked',
12+
// sourcemap: 'linked',
1313
minify: true,
1414
external: ['@stacksjs/path'],
1515
plugins: [

storage/framework/core/alias/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
},
2626
"module": "dist/index.js",
2727
"types": "dist/index.d.ts",
28-
"files": ["README.md", "dist", "src"],
28+
"files": ["README.md", "dist"],
2929
"scripts": {
3030
"build": "bun build.ts",
3131
"typecheck": "bun tsc --noEmit",

storage/framework/core/analytics/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const result = await Bun.build({
88
entrypoints: ['./src/index.ts'],
99
outdir: './dist',
1010
format: 'esm',
11-
sourcemap: 'linked',
11+
// sourcemap: 'linked',
1212
minify: true,
1313
plugins: [
1414
// dts({

0 commit comments

Comments
 (0)