Skip to content

Commit 7e69eb3

Browse files
committed
chore: wip
1 parent a515a64 commit 7e69eb3

File tree

7 files changed

+11
-6
lines changed

7 files changed

+11
-6
lines changed

.stacks/core/actions/src/helpers/component-meta.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { existsSync, mkdirSync, writeFileSync } from 'node:fs'
2-
import fg from 'fast-glob'
1+
import { existsSync, mkdirSync, writeFileSync } from '@stacksjs/storage'
2+
import { fg } from '@stacksjs/utils'
33
import MarkdownIt from 'markdown-it'
44
import { type ComponentMeta, type MetaCheckerOptions, createComponentMetaChecker } from 'vue-component-meta'
55
import { frameworkPath, join, parse, projectPath } from '@stacksjs/path'

.stacks/core/actions/src/helpers/vue-compat.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import fg from 'fast-glob'
2-
import fs from 'fs-extra'
1+
import { fg } from '@stacksjs/utils'
2+
import { fs } from '@stacksjs/storage'
33

44
export async function generateVueCompat(paths: string[]) {
55
const files = await fg(paths, {

.stacks/core/ai/build.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
await Bun.build({
22
entrypoints: ['./src/index.ts'],
33
outdir: './dist',
4+
target: 'bun'
45
})

.stacks/core/build/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ export {
77
webComponents,
88
stacks,
99
} from '@stacksjs/vite'
10+
11+
export { build } from 'bun'

.stacks/core/storage/src/folders.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import fs from 'fs-extra'
1+
import { fs } from '@stacksjs/storage'
22
import { contains } from '@stacksjs/arrays'
33
import { join } from '@stacksjs/path'
44

.stacks/core/storage/src/fs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { default as fs } from 'fs-extra'
1+
export { default as fs, existsSync, mkdirSync, writeFileSync } from 'fs-extra'

.stacks/core/utils/src/vendors.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,3 +220,5 @@ export {
220220
createHead,
221221
renderHeadToString,
222222
} from '@vueuse/head'
223+
224+
export { default as fg } from 'fast-glob'

0 commit comments

Comments
 (0)