File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 18
18
" node_modules/leveldown/**/*" ,
19
19
" node_modules/utp-native/**/*"
20
20
],
21
- "scripts" : " dist/lib/workers/worker.js"
21
+ "scripts" : [
22
+ " dist/lib/workers/worker.js"
23
+ ]
22
24
},
23
25
"scripts" : {
24
26
"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';
8
8
import testLevel from '../lib/test-level' ;
9
9
import testUtpNative from '../lib/test-utp-native' ;
10
10
import testWorkers from '../lib/workers/test-workers' ;
11
- import { version } from '../utils' ;
11
+ import { version , test } from '../utils' ;
12
12
13
13
async function main ( argv = process . argv ) : Promise < number > {
14
14
// Print out command-line arguments
@@ -36,6 +36,7 @@ async function main(argv = process.argv): Promise<number> {
36
36
await testUtpNative ( ) ;
37
37
38
38
process . stdout . write ( version ) ;
39
+ process . stdout . write ( test . toString ( ) ) ;
39
40
40
41
process . exitCode = 0 ;
41
42
return process . exitCode ;
Original file line number Diff line number Diff line change 21
21
},
22
22
"include" : [
23
23
" ./src/**/*" ,
24
+ " ./src/**/*.json" ,
24
25
" ./tests/**/*"
25
26
]
26
27
}
You can’t perform that action at this time.
0 commit comments