File tree 3 files changed +7
-6
lines changed
3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 75
75
"build" : " unbuild && bun run ./scripts/deno.ts" ,
76
76
"test" : " npm run test:typecheck && npm run test:unit" ,
77
77
"test:unit" : " NODE_OPTIONS=--experimental-vm-modules vitest run ./src" ,
78
- "test:typecheck" : " vitest typecheck --config ./vitest.type.config.ts --run" ,
78
+ "test:typecheck" : " vitest -- typecheck --config ./vitest.type.config.ts --run" ,
79
79
"test:coverage" : " npm test -- --reporter verbose --coverage" ,
80
80
"test:e2e" : " run-s test:e2e:*" ,
81
81
"test:e2e:browser" : " cd playground/browser && node --test" ,
102
102
},
103
103
"devDependencies" : {
104
104
"@cloudflare/workers-types" : " ^4.20231016.0" ,
105
- "@types/node" : " ^20.6.0 " ,
105
+ "@types/node" : " ^20.11.24 " ,
106
106
"@types/supertest" : " ^2.0.12" ,
107
- "@vitest/coverage-v8" : " ^0.34.6 " ,
107
+ "@vitest/coverage-v8" : " ^1.3.0 " ,
108
108
"bumpp" : " ^9.2.0" ,
109
109
"bun-types" : " latest" ,
110
110
"cookie-es" : " ^1.0.0" ,
117
117
"supertest" : " ^6.3.3" ,
118
118
"playwright" : " ^1.38.1" ,
119
119
"pkg-types" : " ^1.0.2" ,
120
- "typescript" : " ^5.2.2 " ,
120
+ "typescript" : " ^5.3.3 " ,
121
121
"unbuild" : " ^2.0.0" ,
122
- "vitest" : " ^0.34.6 " ,
122
+ "vitest" : " ^1.3.0 " ,
123
123
"vitest-environment-miniflare" : " ^2.14.1"
124
124
}
125
125
}
Original file line number Diff line number Diff line change 1
- import { defineConfig } from 'vitest/config'
1
+ import { configDefaults , defineConfig } from 'vitest/config'
2
2
3
3
export default defineConfig ( {
4
4
test : {
5
5
includeSource : [ 'src/**/*.{js,ts}' ] ,
6
+ exclude : [ ...configDefaults . exclude , '**/playground/**' ] ,
6
7
} ,
7
8
} )
You can’t perform that action at this time.
0 commit comments