From 8f1588c5df89d074a183d980a4a1460b80b9b98a Mon Sep 17 00:00:00 2001 From: todd Date: Wed, 27 Feb 2019 19:22:03 -0500 Subject: [PATCH] Change travis.yml back to use `npm install` The npm version that is running on travis.ci doesn't support `npm ci` It looks the easy way to update the npm version is updating the package-lock.json file. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ed9cfbb91..6e2a95dac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ language: install: - bundle install - - npm ci + - npm install script: - npm run build