Skip to content

Commit

Permalink
removing npm custom scripts from server build, adding vscode-jsonrpc dep
Browse files Browse the repository at this point in the history
  • Loading branch information
bschnurr committed Jun 22, 2020
1 parent 6305680 commit 94943ee
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
3 changes: 2 additions & 1 deletion client/package.json
Expand Up @@ -182,6 +182,7 @@
"leven": "^3.1.0",
"vscode-languageclient": "^7.0.0-next.6",
"vscode-languageserver": "^7.0.0-next.4",
"vscode-uri": "^2.1.2"
"vscode-uri": "^2.1.2",
"vscode-jsonrpc": "^6.0.0-next.3"
}
}
8 changes: 6 additions & 2 deletions common/config/rush/pnpm-lock.yaml

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

9 changes: 3 additions & 6 deletions server/package.json
Expand Up @@ -8,11 +8,7 @@
"start": "npm run start:serverDebug && npm run start:server",
"start:serverDebug": "npm i && npm run build:serverDebug",
"start:serverProd": "npm i && npm run build:serverProd",
"build": "npm run build:serverProd && npm run build:serverDebug && npm run build:cli",
"build:serverDebug": "tsc && npm run installServer",
"build:serverProd": "npm run installServer && webpack --config webpack.config-server.js",
"installServer": "node ./customInstallServerIntoExtension.js ../client ./package.json ./tsconfig.json ./package-lock.json",
"build:cli": "node ./copyTypeshedFallback.js && npm run eslint && webpack --config webpack.config-cli.js",
"build": "tsc",
"eslint": "eslint src/**/*.ts",
"watch": "tsc --watch",
"test": "jest --detectOpenHandles --forceExit",
Expand All @@ -26,7 +22,8 @@
"leven": "^3.1.0",
"typescript-char": "^0.0.0",
"vscode-languageserver": "^7.0.0-next.4",
"vscode-uri": "^2.1.2"
"vscode-uri": "^2.1.2",
"vscode-jsonrpc": "^6.0.0-next.3"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
Expand Down

0 comments on commit 94943ee

Please sign in to comment.