File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,10 @@ async function watchFolders() {
22
22
withFileTypes : true ,
23
23
} )
24
24
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 ) )
31
29
return
32
30
33
31
if ( dir . isDirectory ( ) ) {
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export enum NpmScript {
24
24
TestFeature = 'playwright test --config playwright.config.ts' ,
25
25
TestUi = 'bun test 3' ,
26
26
TestCoverage = 'bun test 4' ,
27
- TestTypes = 'vue-tsx bun --bun tsc --noEmit' ,
27
+ TestTypes = 'vue-tsc --noEmit' ,
28
28
Generate = 'generate' ,
29
29
GenerateTypes = 'generate:types' ,
30
30
GenerateEntries = 'generate:entries' ,
You can’t perform that action at this time.
0 commit comments