From 57471ddcff589ee0f032e80b9d2fa3a4542bfec9 Mon Sep 17 00:00:00 2001 From: Pat Cavit Date: Tue, 11 Jul 2017 22:15:27 -0700 Subject: [PATCH] chore: don't add travis-only deps to package.json `npm@5` changed to save-by-default, which screwed up the plan of keeping travis-only deps out of `package.json`. Fixes #1894 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 494a4fef..ef6f96b3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ cache: # Custom install step so the travis-only stuff doesn't need to be in package.json install: - npm install -- npm install @alrra/travis-scripts@^3.0.1 gh-pages@^0.12.0 +- npm install --no-save @alrra/travis-scripts@^3.0.1 gh-pages@^0.12.0 # Bundle before running tests so the bundle is always up-to-date before_script: npm run build --silent