Skip to content

Commit 9989739

Browse files
committed
chore: wip
1 parent bd41723 commit 9989739

File tree

6 files changed

+49
-119
lines changed

6 files changed

+49
-119
lines changed

bun.lock

+44-114
Large diffs are not rendered by default.

storage/framework/core/cache/src/drivers/dynamodb.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { config } from '@stacksjs/config'
2-
// dynamodb-cache-driver.ts
32
import { BentoCache, bentostore } from 'bentocache'
43
import { dynamoDbDriver } from 'bentocache/drivers/dynamodb'
54
import { BaseCacheDriver } from './base'

storage/framework/core/commerce/build.ts

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ const result = await Bun.build({
99
entrypoints: ['./src/index.ts'],
1010
outdir: './dist',
1111
format: 'esm',
12+
target: 'bun',
1213
// sourcemap: 'linked',
1314
minify: true,
1415
plugins: [

storage/framework/core/components/stepper/components.d.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
/* eslint-disable */
2-
/* prettier-ignore */
32
// @ts-nocheck
43
// Generated by unplugin-vue-components
54
// Read more: https://github.com/vuejs/core/pull/3399
5+
// biome-ignore lint: disable
66
export {}
77

8+
/* prettier-ignore */
89
declare module 'vue' {
910
export interface GlobalComponents {
1011
RouterLink: typeof import('vue-router')['RouterLink']

storage/framework/core/config/src/config.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ export const storage: StacksOptions['storage'] = config.storage
3535
export const team: StacksOptions['team'] = config.team
3636
export const ui: StacksOptions['ui'] = config.ui
3737

38-
export { defaults, overrides }
39-
4038
export * from './helpers'
4139

4240
export function determineAppEnv(): string {
@@ -54,3 +52,5 @@ export function determineAppEnv(): string {
5452

5553
return app.env
5654
}
55+
56+
export { defaults, overrides }

storage/framework/core/logging/build.ts

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ const result = await Bun.build({
1717
'@stacksjs/config',
1818
'@stacksjs/error-handling',
1919
'@stacksjs/path',
20-
'@stacksjs/types',
2120
'@stacksjs/validation',
2221
],
2322
plugins: [

0 commit comments

Comments
 (0)