1
0
mirror of https://github.com/yldio/copilot.git synced 2024-09-21 05:43:52 +03:00

make: prefer-offline installs and upgrade nodejs

This commit is contained in:
Tom Gallacher 2016-10-24 16:55:06 +01:00
parent 76dd5b8634
commit eda79704ac
4 changed files with 7 additions and 7 deletions

View File

@ -14,7 +14,7 @@ machine:
services:
- docker
node:
version: 6.9.0
version: 6.9.1
dependencies:
cache_directories:

View File

@ -1,10 +1,10 @@
.PHONY: install
install:
yarn install
yarn install --prefer-offline
.PHONY: install-production
install-production:
yarn install --production --pure-lockfile
yarn install --production --pure-lockfile --prefer-offline
.PHONY: clean
clean:

View File

@ -1,10 +1,10 @@
.PHONY: install
install:
yarn install
yarn install --prefer-offline
.PHONY: install-production
install-production: compile clean
yarn install --production --pure-lockfile
yarn install --production --pure-lockfile --prefer-offline
.PHONY: clean
clean:

View File

@ -4,11 +4,11 @@ test:
.PHONY: install
install:
yarn install
yarn install --prefer-offline
.PHONY: install-production
install-production:
yarn install --production --pure-lockfile
yarn install --production --pure-lockfile --prefer-offline
.PHONY: clean
clean: