File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -110,8 +110,7 @@ async function main() {
110
110
if ( ! skipTests ) {
111
111
step ( '\nRunning tests...' )
112
112
if ( ! isDryRun ) {
113
- await run ( 'pnpm' , [ 'test' ] )
114
- await run ( 'pnpm' , [ 'test-dts' ] )
113
+ await run ( 'pnpm' , [ 'test' , 'run' ] )
115
114
} else {
116
115
console . log ( `Skipped (dry run)` )
117
116
}
@@ -126,11 +125,9 @@ async function main() {
126
125
// build all packages with types
127
126
step ( '\nBuilding all packages...' )
128
127
if ( ! skipBuild && ! isDryRun ) {
129
- await run ( 'pnpm' , [ 'run' , 'build' , '--release' ] )
130
- await run ( 'pnpm' , [ 'run' , 'build-dts' ] )
131
- // test generated dts files
132
- step ( '\nVerifying type declarations...' )
133
- await run ( 'pnpm' , [ 'run' , 'test-dts-only' ] )
128
+ await run ( 'pnpm' , [ 'run' , 'build' ] )
129
+ step ( '\nBuilding and testing types...' )
130
+ await run ( 'pnpm' , [ 'test-dts' ] )
134
131
} else {
135
132
console . log ( `(skipped)` )
136
133
}
You can’t perform that action at this time.
0 commit comments