File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 12
12
"format" : " prettier --write --parser typescript \" packages/**/*.ts?(x)\" " ,
13
13
"ls-lint" : " ls-lint" ,
14
14
"test" : " node scripts/build.js vue -f global -d && jest" ,
15
- "test-dts" : " node scripts/build.js shared reactivity runtime-core runtime-dom -dt -f esm-bundler && tsc -p ./test-dts/tsconfig.json && tsc -p ./test-dts/tsconfig.build.json" ,
15
+ "test-dts" : " node scripts/build.js shared reactivity runtime-core runtime-dom -dt -f esm-bundler && yarn test-dts-only" ,
16
+ "test-dts-only" : " tsc -p ./test-dts/tsconfig.json && tsc -p ./test-dts/tsconfig.build.json" ,
16
17
"release" : " node scripts/release.js" ,
17
18
"changelog" : " conventional-changelog -p angular -i CHANGELOG.md -s" ,
18
19
"dev-compiler" : " npm-run-all --parallel \" dev template-explorer\" serve" ,
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ async function main() {
94
94
await run ( 'yarn' , [ 'build' , '--release' ] )
95
95
// test generated dts files
96
96
step ( '\nVerifying type declarations...' )
97
- await run ( bin ( 'tsd' ) )
97
+ await run ( 'yarn' , [ 'test-dts-only' ] )
98
98
} else {
99
99
console . log ( `(skipped)` )
100
100
}
You can’t perform that action at this time.
0 commit comments