Skip to content

Commit

Permalink
build: upgrade dependencies and ts config
Browse files Browse the repository at this point in the history
  • Loading branch information
michaellzc committed Nov 9, 2018
1 parent d2ab294 commit 3d8eebe
Show file tree
Hide file tree
Showing 6 changed files with 527 additions and 225 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ out
node_modules
client/server
*.log
*.vsix
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
"dependencies": {
"vscode": "^1.1.21",
"vscode-languageclient": "^5.1.0",
"vscode-languageclient": "^5.1.1",
"which": "^1.3.1"
}
}
1 change: 1 addition & 0 deletions client/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"target": "es6",
"outDir": "out",
"rootDir": "src",
"moduleResolution": "node",
"lib": [
"es6"
],
Expand Down
7 changes: 4 additions & 3 deletions client/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1418,9 +1418,10 @@ vscode-jsonrpc@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/vscode-jsonrpc/-/vscode-jsonrpc-4.0.0.tgz#a7bf74ef3254d0a0c272fab15c82128e378b3be9"

vscode-languageclient@^5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/vscode-languageclient/-/vscode-languageclient-5.1.0.tgz#650ab0dc9fd0daaade058a8471aaff5bc3f9580e"
vscode-languageclient@^5.1.1:
version "5.1.1"
resolved "https://registry.yarnpkg.com/vscode-languageclient/-/vscode-languageclient-5.1.1.tgz#5b1f12066d89660d0d74b80dbbca371c6aea52f7"
integrity sha512-jMxshi+BPRQFNG8GB00dJv7ldqMda0be26laYYll/udtJuHbog6RqK10GSxHWDN0PgY0b0m5fePyTk3bq8a0TA==
dependencies:
semver "^5.5.0"
vscode-languageserver-protocol "3.13.0"
Expand Down
17 changes: 10 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
},
"engines": {
"vscode": "^1.26.0",
"node": "^8.0.0"
"node": "^10.13.0",
"yarn": "^1.12.1"
},
"categories": [
"Linters"
Expand Down Expand Up @@ -75,19 +76,21 @@
"lint:client": "tslint --fix -c tslint.json -p client",
"lint:server": "tslint --fix -c tslint.json -p server",
"postinstall": "cd client && yarn install && cd ../server && yarn install && cd ..",
"commit": "git-cz"
"commit": "git-cz",
"vsce": "vsce"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.0",
"@types/mocha": "^2.2.48",
"@types/node": "^6.0.101",
"@types/node": "^10.12.3",
"@types/which": "^1.3.1",
"commitizen": "^2.9.6",
"commitizen": "^3.0.4",
"conventional-changelog": "^1.1.24",
"cz-conventional-changelog": "^2.1.0",
"npm-run-all": "^4.1.2",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
"npm-run-all": "^4.1.3",
"tslint": "^5.11.0",
"typescript": "^3.1.6",
"vsce": "^1.53.0"
},
"config": {
"commitizen": {
Expand Down
Loading

0 comments on commit 3d8eebe

Please sign in to comment.