Skip to content

Commit 402be21

Browse files
committed
chore: wip
1 parent 2210a7c commit 402be21

File tree

33 files changed

+705
-36
lines changed

33 files changed

+705
-36
lines changed

bun.lockb

392 Bytes
Binary file not shown.

storage/framework/core/actions/src/helpers/utils.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ export async function runAction(action: Action, options?: ActionOptions) {
2525

2626
for await (const file of glob.scan(scanOptions)) {
2727
if (file === `${action}.ts` || file.endsWith(`${action}.ts`))
28-
return ((await import(/* @vite-ignore */ p.userActionsPath(file))).default as ActionType).handle()
28+
return ((await import(p.userActionsPath(file))).default as ActionType).handle()
2929

3030
if (file === `${action}.js` || file.endsWith(`${action}.js`))
31-
return ((await import(/* @vite-ignore */ p.userActionsPath(file))).default as ActionType).handle()
31+
return ((await import(p.userActionsPath(file))).default as ActionType).handle()
3232

3333
// if a custom model name is used, we need to check for it
3434
try {
35-
const a = await import(/* @vite-ignore */ p.userActionsPath(file))
35+
const a = await import(p.userActionsPath(file))
3636
if (a.name === action) {
3737
console.log('a.name matches', a.name)
3838
return await a.handle()

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
export const frontend = {}
2-
// export * from '@stacksjs/utils/vendors'
3-
41
export {
52
asyncComputed,
63
breakpointsAntDesign,

0 commit comments

Comments
 (0)