File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 44 "**/*.d.ts" : true ,
55 "**/*.js" : true ,
66 "**/*.map" : true
7- }
7+ },
8+ "typescript.tsdk" : " ./node_modules/typescript/lib"
89}
Original file line number Diff line number Diff line change 11{
22 "name" : " windows-api-show-window" ,
3- "version" : " 0.0.2 " ,
3+ "version" : " 0.0.3 " ,
44 "description" : " Call ShowWindow from node via .NET" ,
55 "main" : " src/index.js" ,
66 "dependencies" : {
1212 },
1313 "scripts" : {
1414 "postinstall" : " npm run build" ,
15- "build" : " ./node_modules/.bin/tsc" ,
16- "test" : " npm run build && start node test/index.js"
15+ "build" : " tsc" ,
16+ "test" : " npm run build && start node test/index.js" ,
17+ "watch" : " tsc --watch"
1718 },
1819 "files" : [
1920 " src" ,
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ console.log("");
4747} ) . then ( promiseToWait )
4848. then ( ( ) => {
4949 console . log ( "Test finished" ) ;
50- } ) . catch ( err => {
50+ } ) . then ( promiseToWait )
51+ . catch ( err => {
5152 console . error ( err ) ;
5253} ) ;
You can’t perform that action at this time.
0 commit comments