mirror of
https://github.com/coder/code-server.git
synced 2026-05-05 03:55:18 +02:00
Add dependencies required for running build script
They were getting pulled from VS Code which doesn't work if you are running a build in a clean repo.
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
"postinstall": "rm -rf node_modules/@types/node",
|
||||
"start": "yarn runner ensure-in-vscode && nodemon --watch ../../../out --verbose ../../../out/vs/server/main.js",
|
||||
"watch": "yarn runner ensure-in-vscode && cd ../../../ && yarn watch",
|
||||
"build": "yarn runner build",
|
||||
"build": "yarn --ignore-scripts && yarn runner build",
|
||||
"package": "yarn runner package",
|
||||
"binary": "yarn runner binary",
|
||||
"patch:generate": "yarn runner ensure-in-vscode && cd ../../../ && git diff --staged > ./src/vs/server/scripts/vscode.patch",
|
||||
@@ -15,13 +15,15 @@
|
||||
"devDependencies": {
|
||||
"@coder/nbin": "^1.2.2",
|
||||
"@types/fs-extra": "^8.0.1",
|
||||
"@types/node": "^10.12.12",
|
||||
"@types/pem": "^1.9.5",
|
||||
"@types/safe-compare": "^1.1.0",
|
||||
"@types/tar-fs": "^1.16.1",
|
||||
"@types/tar-stream": "^1.6.1",
|
||||
"fs-extra": "^8.1.0",
|
||||
"nodemon": "^1.19.1",
|
||||
"ts-node": "^8.4.1"
|
||||
"ts-node": "^8.4.1",
|
||||
"typescript": "3.6"
|
||||
},
|
||||
"resolutions": {
|
||||
"@types/node": "^10.12.12",
|
||||
|
||||
Reference in New Issue
Block a user