Skip to content

Commit a1e7116

Browse files
committed
chore: wip
1 parent 5a969e7 commit a1e7116

File tree

6 files changed

+14
-5
lines changed

6 files changed

+14
-5
lines changed

storage/framework/core/cli/build.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ const result = await Bun.build({
1010
outdir: './dist',
1111
target: 'bun',
1212
plugins: [
13-
dts(),
13+
dts({
14+
root: '.',
15+
outdir: './dist',
16+
}),
1417
],
1518
})
1619

storage/framework/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,4 +349,4 @@
349349
"@stacksjs/utils": "^0.70.23",
350350
"@stacksjs/validation": "^0.70.23"
351351
}
352-
}
352+
}

storage/framework/core/plugins/build.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ const result = await Bun.build({
1313
external: ['bun'],
1414
minify: true,
1515
plugins: [
16-
dts(),
16+
dts({
17+
root: '.',
18+
outdir: './dist',
19+
}),
1720
],
1821
})
1922

storage/framework/core/storage/build.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ const result = await Bun.build({
1111
format: 'esm',
1212
target: 'bun',
1313
plugins: [
14-
dts(),
14+
dts({
15+
root: '.',
16+
outdir: './dist',
17+
}),
1518
],
1619
})
1720

904 Bytes
Binary file not shown.

storage/framework/core/ui/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const result = await Bun.build({
1212
target: 'bun',
1313
// sourcemap: 'linked',
1414
minify: true,
15-
external: ['@stacksjs/config'],
15+
external: ['@stacksjs/config', '@stacksjs/headwind'],
1616
plugins: [
1717
dts({
1818
root: '.',

0 commit comments

Comments
 (0)