File tree 6 files changed +49
-119
lines changed
6 files changed +49
-119
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1
1
import { config } from '@stacksjs/config'
2
- // dynamodb-cache-driver.ts
3
2
import { BentoCache , bentostore } from 'bentocache'
4
3
import { dynamoDbDriver } from 'bentocache/drivers/dynamodb'
5
4
import { BaseCacheDriver } from './base'
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ const result = await Bun.build({
9
9
entrypoints : [ './src/index.ts' ] ,
10
10
outdir : './dist' ,
11
11
format : 'esm' ,
12
+ target : 'bun' ,
12
13
// sourcemap: 'linked',
13
14
minify : true ,
14
15
plugins : [
Original file line number Diff line number Diff line change 1
1
/* eslint-disable */
2
- /* prettier-ignore */
3
2
// @ts -nocheck
4
3
// Generated by unplugin-vue-components
5
4
// Read more: https://github.com/vuejs/core/pull/3399
5
+ // biome-ignore lint: disable
6
6
export { }
7
7
8
+ /* prettier-ignore */
8
9
declare module 'vue' {
9
10
export interface GlobalComponents {
10
11
RouterLink : typeof import ( 'vue-router' ) [ 'RouterLink' ]
Original file line number Diff line number Diff line change @@ -35,8 +35,6 @@ export const storage: StacksOptions['storage'] = config.storage
35
35
export const team : StacksOptions [ 'team' ] = config . team
36
36
export const ui : StacksOptions [ 'ui' ] = config . ui
37
37
38
- export { defaults , overrides }
39
-
40
38
export * from './helpers'
41
39
42
40
export function determineAppEnv ( ) : string {
@@ -54,3 +52,5 @@ export function determineAppEnv(): string {
54
52
55
53
return app . env
56
54
}
55
+
56
+ export { defaults , overrides }
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ const result = await Bun.build({
17
17
'@stacksjs/config' ,
18
18
'@stacksjs/error-handling' ,
19
19
'@stacksjs/path' ,
20
- '@stacksjs/types' ,
21
20
'@stacksjs/validation' ,
22
21
] ,
23
22
plugins : [
You can’t perform that action at this time.
0 commit comments