Skip to content

Commit

Permalink
Fix some details, set version to v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
oledid committed Jan 12, 2017
1 parent d39bf19 commit fdce2a4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
"**/*.d.ts": true,
"**/*.js": true,
"**/*.map": true
}
},
"typescript.tsdk": "./node_modules/typescript/lib"
}
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "windows-api-show-window",
"version": "0.0.2",
"version": "0.0.3",
"description": "Call ShowWindow from node via .NET",
"main": "src/index.js",
"dependencies": {
Expand All @@ -12,8 +12,9 @@
},
"scripts": {
"postinstall": "npm run build",
"build": "./node_modules/.bin/tsc",
"test": "npm run build && start node test/index.js"
"build": "tsc",
"test": "npm run build && start node test/index.js",
"watch": "tsc --watch"
},
"files": [
"src",
Expand Down
3 changes: 2 additions & 1 deletion test/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ console.log("");
}).then(promiseToWait)
.then(() => {
console.log("Test finished");
}).catch(err => {
}).then(promiseToWait)
.catch(err => {
console.error(err);
});

0 comments on commit fdce2a4

Please sign in to comment.