Merge pull request #4324 from eed3si9n/wip/bumpvscodemodules

sbt 1.2.1 and some maintenance npm bumps
This commit is contained in:
eugene yokota 2018-08-16 23:38:25 -04:00 committed by GitHub
commit 6eb3d9f0fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 459 additions and 1034 deletions

View File

@ -1 +1 @@
sbt.version=1.2.0 sbt.version=1.2.1

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
{ {
"name": "vscode-sbt-scala", "name": "vscode-sbt-scala",
"displayName": "Scala (sbt)", "displayName": "Scala (sbt)",
"version": "0.2.2", "version": "0.2.3",
"author": "Lightbend, Inc.", "author": "Lightbend, Inc.",
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
"publisher": "lightbend", "publisher": "lightbend",
@ -52,7 +52,7 @@
"postinstall": "node ./node_modules/vscode/bin/install" "postinstall": "node ./node_modules/vscode/bin/install"
}, },
"dependencies": { "dependencies": {
"vscode": "^1.1.16", "vscode": "^1.1.21",
"vscode-languageclient": "^3.4.2", "vscode-languageclient": "^3.4.2",
"hoek": "^4.2.1" "hoek": "^4.2.1"
} }

View File

@ -5,21 +5,21 @@
"requires": true, "requires": true,
"dependencies": { "dependencies": {
"@types/mocha": { "@types/mocha": {
"version": "2.2.43", "version": "2.2.48",
"resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-2.2.43.tgz", "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-2.2.48.tgz",
"integrity": "sha512-xNlAmH+lRJdUMXClMTI9Y0pRqIojdxfm7DHsIxoB2iTzu3fnPmSMEN8SsSx0cdwV36d02PWCWaDUoZPDSln+xw==", "integrity": "sha512-nlK/iyETgafGli8Zh9zJVCTicvU3iajSkRwOh3Hhiva598CMqNJ4NcVCGMTGKpGpTYj/9R8RLzS9NAykSSCqGw==",
"dev": true "dev": true
}, },
"@types/node": { "@types/node": {
"version": "7.0.61", "version": "7.0.69",
"resolved": "https://registry.npmjs.org/@types/node/-/node-7.0.61.tgz", "resolved": "https://registry.npmjs.org/@types/node/-/node-7.0.69.tgz",
"integrity": "sha512-X4MNN+Z36OmVPv7n08wxq46/t61/rauW4+xeyxGPueDQ9t7SetHnuEPS0p9n6wU/15HvJLGjzfLTc/RwN7id3A==", "integrity": "sha512-S5NC8HV6HnRipg8nC0j30TPl7ktXjRTKqgyINLNe8K/64UJUI8Lq0sRopXC0hProsV2F5ibj8IqPkl1xpGggrw==",
"dev": true "dev": true
}, },
"typescript": { "typescript": {
"version": "2.8.3", "version": "2.9.2",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-2.8.3.tgz", "resolved": "https://registry.npmjs.org/typescript/-/typescript-2.9.2.tgz",
"integrity": "sha512-K7g15Bb6Ra4lKf7Iq2l/I5/En+hLIHmxWZGq3D4DIRNFxMNV6j2SHSvDOqs2tGd4UvD/fJvrwopzQXjLrT7Itw==", "integrity": "sha512-Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w==",
"dev": true "dev": true
} }
} }

View File

@ -19,8 +19,8 @@
"watch:server": "cd server && npm run installServer && cd .. && tsc -w -p server/tsconfig.json" "watch:server": "cd server && npm run installServer && cd .. && tsc -w -p server/tsconfig.json"
}, },
"devDependencies": { "devDependencies": {
"@types/mocha": "^2.2.42", "@types/mocha": "^2.2.48",
"@types/node": "^7.0.10", "@types/node": "^7.0.69",
"typescript": "^2.7.2" "typescript": "^2.9.2"
} }
} }

View File

@ -10,7 +10,7 @@
"integrity": "sha512-RYUKn0DgHTFcS8kS4VaNCjNMaQXYqiXdN9bKrFjXzu5RPKfjIYcoh47oVWwZj4L3R/DPB0Se7HPaDatvYY2XgQ==", "integrity": "sha512-RYUKn0DgHTFcS8kS4VaNCjNMaQXYqiXdN9bKrFjXzu5RPKfjIYcoh47oVWwZj4L3R/DPB0Se7HPaDatvYY2XgQ==",
"requires": { "requires": {
"vscode-languageserver-protocol": "3.5.1", "vscode-languageserver-protocol": "3.5.1",
"vscode-uri": "1.0.3" "vscode-uri": "^1.0.1"
}, },
"dependencies": { "dependencies": {
"vscode-jsonrpc": { "vscode-jsonrpc": {