mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 06:23:37 -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
|
||||
- npm install -g greenkeeper-lockfile
|
||||
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
|
||||
script: npm run $NPM_SCRIPT
|
||||
after_script: greenkeeper-lockfile-upload
|
||||
|
|
Loading…
Reference in a new issue