Archived
1
0

Move rimraf to prod deps in extensions

The postinstall uses rimraf so it needs to exist in the final build.
This commit is contained in:
Asher
2020-07-30 10:42:34 -05:00
parent 638ab7c557
commit 50ed29e0f0
2 changed files with 21 additions and 2 deletions

View File

@ -35,8 +35,7 @@ vscode_yarn() {
cd lib/vscode
yarn --production --frozen-lockfile
cd extensions
# Cannot use --production here. The postinstall here uses a dev dependency.
yarn --frozen-lockfile
yarn --production --frozen-lockfile
}
main "$@"