Skip to content

Commit 7399602

Browse files
committed
chore: wip
1 parent fd43e91 commit 7399602

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

storage/framework/api/dev.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,10 @@ async function watchFolders() {
2222
withFileTypes: true,
2323
})
2424
coreDirectories.forEach((dir) => {
25-
// Skip the directory named 'bun-create' -> no need to build
26-
if (
27-
dir.name === 'bun-create' ||
28-
dir.name === 'lint' ||
29-
dir.name === 'components'
30-
)
25+
const ignore = ['dist', 'bun-create', 'lint', 'components']
26+
27+
// no need to build these directories
28+
if (ignore.includes(dir.name))
3129
return
3230

3331
if (dir.isDirectory()) {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export enum NpmScript {
2424
TestFeature = 'playwright test --config playwright.config.ts',
2525
TestUi = 'bun test 3',
2626
TestCoverage = 'bun test 4',
27-
TestTypes = 'vue-tsx bun --bun tsc --noEmit',
27+
TestTypes = 'vue-tsc --noEmit',
2828
Generate = 'generate',
2929
GenerateTypes = 'generate:types',
3030
GenerateEntries = 'generate:entries',

0 commit comments

Comments
 (0)