[json] fix compile script

This commit is contained in:
Martin Aeschlimann
2019-07-22 10:07:11 +02:00
parent 3ac7c39c5d
commit d782b76a8e
2 changed files with 7 additions and 5 deletions

View File

@@ -4,4 +4,7 @@ out/**/*.js.map
src/
test/
tsconfig.json
.gitignore
.gitignore
yarn.lock
extension.webpack.config.js
vscode-json-languageserver-*.tgz

View File

@@ -24,10 +24,9 @@
"@types/node": "^10.14.8"
},
"scripts": {
"prepublishOnly": "npm run clean && npm run test",
"preversion": "npm test",
"compile": "gulp compile-extension:json-language-features-server",
"watch": "gulp watch-extension:json-language-features-server",
"prepublishOnly": "npm run clean && npm run compile",
"compile": "npx gulp compile-extension:json-language-features-server",
"watch": "npx gulp watch-extension:json-language-features-server",
"clean": "../../../node_modules/.bin/rimraf out",
"install-service-next": "yarn add vscode-json-languageservice@next",
"install-service-local": "yarn link vscode-json-languageservice",