Skip to content

Commit d139ac7

Browse files
committed
chore: wip
1 parent 0115059 commit d139ac7

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

storage/framework/core/alias/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ export const alias: Record<string, string> = {
3232
'stacks/api': p.coreApiPath('src/index.ts'),
3333
'@stacksjs/auth/*': p.authPath('src/*'),
3434
'stacks/auth/*': p.authPath('src/*'),
35+
'@stacksjs/browser/*': p.browserPath('src/*'),
36+
'stacks/browser/*': p.browserPath('src/*'),
3537
'@stacksjs/build': p.buildPath('src/index.ts'),
3638
'stacks/build': p.buildPath('src/index.ts'),
3739
'@stacksjs/build/*': p.buildPath('src/*'),

storage/framework/core/chat/tests/example.test.ts renamed to storage/framework/core/chat/tests/chat.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import { describe, expect, it } from 'bun:test'
2+
13
describe('example test', () => {
24
it('assert', () => {
35
expect(1).toBe(1)

storage/framework/core/collections/build.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ const result = await Bun.build({
1212
sourcemap: 'linked',
1313
minify: true,
1414

15-
// plugins: [dts()],
15+
plugins: [
16+
// dts({
17+
// root: './src',
18+
// outdir: './dist',
19+
// }),
20+
],
1621
})
1722

1823
await outro({

storage/framework/core/config/build.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,12 @@ const result = await Bun.build({
2121
'@stacksjs/validation',
2222
'@stacksjs/strings',
2323
],
24-
plugins: [dts({ root: './src', outdir: './dist' })],
24+
plugins: [
25+
dts({
26+
root: './src',
27+
outdir: './dist',
28+
}),
29+
],
2530
})
2631

2732
await outro({

0 commit comments

Comments
 (0)