mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 06:52:40 -05:00
Use production=false during install
Otherwise dev dependency bins aren't present
This commit is contained in:
parent
a8fd1f9c38
commit
bc7428ed07
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ before_install:
|
||||||
- '[[ $(node -v) =~ ^v9.*$ ]] || npm install -g npm@latest' # skipped when using node 9
|
- '[[ $(node -v) =~ ^v9.*$ ]] || npm install -g npm@latest' # skipped when using node 9
|
||||||
- npm install -g greenkeeper-lockfile
|
- npm install -g greenkeeper-lockfile
|
||||||
install:
|
install:
|
||||||
- if [[ ${TRAVIS_BRANCH:0:11} = greenkeeper ]]; then npm install; else npm ci; fi
|
- if [[ ${TRAVIS_BRANCH:0:11} = greenkeeper ]]; then npm install --production=false; else npm ci --production=false; fi
|
||||||
before_script: greenkeeper-lockfile-update
|
before_script: greenkeeper-lockfile-update
|
||||||
script: npm run $NPM_SCRIPT
|
script: npm run $NPM_SCRIPT
|
||||||
after_script: greenkeeper-lockfile-upload
|
after_script: greenkeeper-lockfile-upload
|
||||||
|
|
Loading…
Reference in a new issue