File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1818 " node_modules/leveldown/**/*" ,
1919 " node_modules/utp-native/**/*"
2020 ],
21- "scripts" : " dist/lib/workers/worker.js"
21+ "scripts" : [
22+ " dist/lib/workers/worker.js"
23+ ]
2224 },
2325 "scripts" : {
2426 "build" : " rm -r ./dist || true; tsc -p ./tsconfig.build.json" ,
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import NumPair from '../lib/NumPair';
88import testLevel from '../lib/test-level' ;
99import testUtpNative from '../lib/test-utp-native' ;
1010import testWorkers from '../lib/workers/test-workers' ;
11- import { version } from '../utils' ;
11+ import { version , test } from '../utils' ;
1212
1313async function main ( argv = process . argv ) : Promise < number > {
1414 // Print out command-line arguments
@@ -36,6 +36,7 @@ async function main(argv = process.argv): Promise<number> {
3636 await testUtpNative ( ) ;
3737
3838 process . stdout . write ( version ) ;
39+ process . stdout . write ( test . toString ( ) ) ;
3940
4041 process . exitCode = 0 ;
4142 return process . exitCode ;
Original file line number Diff line number Diff line change 2121 },
2222 "include" : [
2323 " ./src/**/*" ,
24+ " ./src/**/*.json" ,
2425 " ./tests/**/*"
2526 ]
2627}
You can’t perform that action at this time.
0 commit comments