Skip to content

Commit 668aabf

Browse files
authored
Merge pull request #27 from rande/fix_node_package_version
fix(npm): improve support for invalid version in package url
2 parents aa98d87 + 38140d9 commit 668aabf

File tree

5 files changed

+4242
-4
lines changed

5 files changed

+4242
-4
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ cache:
88

99
install:
1010
# from http://austinpray.com/ops/2015/09/20/change-travis-node-version.html
11+
- make install-backend
1112
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install 4.4.5
12-
- make install
13+
- npm -g install yarn
14+
- make install-frontend
1315

1416
script:
1517
- go get github.com/mattn/goveralls

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ install-backend: ## Install backend dependencies
6363
glide install
6464

6565
install-frontend: ## Install frontend dependencies
66-
cd gui && npm install
66+
cd gui && yarn --no-progress
6767

6868
update: ## Update dependencies
6969
glide update

0 commit comments

Comments
 (0)