Skip to content

Commit

Permalink
Fixes #331: terminateProcess.sh is not shipped in dist package
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaeumer committed Apr 5, 2018
1 parent ceb6ffc commit a38945c
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@ language servers for [VSCode](https://code.visualstudio.com/).
### 4.0.2 Client

* [Initialisation exceptions swallowed](https://github.com/Microsoft/vscode-languageserver-node/issues/330)
* [Errors from rename still not shown in VSCode](https://github.com/Microsoft/vscode-languageserver-node/issues/329)
* [terminateProcess.sh is not shipped in dist package](https://github.com/Microsoft/vscode-languageserver-node/issues/331)

### 4.0.1 Client

* removed unnecessary console log statement.
* [Errors from rename still not shown in VSCode](https://github.com/Microsoft/vscode-languageserver-node/issues/329)

### 4.0.0 Server and Client

Expand Down
58 changes: 58 additions & 0 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"main": "./lib/main.js",
"typings": "./lib/main",
"devDependencies": {
"shx": "^0.2.2",
"vscode": "^1.1.5"
},
"dependencies": {
Expand All @@ -25,7 +26,7 @@
"scripts": {
"prepublish": "npm run update-vscode && npm run compile && npm test",
"postpublish": "node ../build/npm/post-publish.js",
"compile": "node ../build/bin/tsc -p ./tsconfig.json",
"compile": "node ../build/bin/tsc -p ./tsconfig.json && shx cp src/utils/terminateProcess.sh lib/utils/terminateProcess.sh",
"watch": "node ../build/bin/tsc -w -p ./tsconfig.json",
"update-vscode": "node ./node_modules/vscode/bin/install",
"test": "cd lib && node ../node_modules/vscode/bin/test"
Expand Down

0 comments on commit a38945c

Please sign in to comment.