Browse Source

Fixes #392 - unable to contribute if default script shell is sh

main
Cédric Malard 6 years ago
committed by Eric Amodio
parent
commit
8ceb663400
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      package.json

+ 2
- 2
package.json View File

@ -3225,9 +3225,9 @@
"rebuild": "npm run reset && npm run lint && tsc -m commonjs -p ./ && npm run build-ui",
"reset": "npm run clean && npm install --no-save",
"watch": "tsc -watch -m commonjs -p ./",
"watch-ui": "pushd \"./src/ui\" && npm run watch --no-save && popd",
"watch-ui": "cd \"./src/ui\" && npm run watch --no-save && cd \"../..\"",
"postinstall": "node ./node_modules/vscode/bin/install && pushd \"./src/ui\" && npm install --no-save && popd",
"postinstall": "node ./node_modules/vscode/bin/install && cd \"./src/ui\" && npm install --no-save && cd \"../..\"",
"prepush": "npm run build",
"vscode:prepublish": "npm run reset && npm run bundle"
},

Loading…
Cancel
Save