From 5414ea6bf9313c1a7849dc37e36dc785c0cb6809 Mon Sep 17 00:00:00 2001 From: Tom McKenzie Date: Thu, 10 May 2018 23:15:01 +1000 Subject: [PATCH] Ignore engines when installing on travis CI (which runs node 10) Fixes issue with webpack 2.7.0 -> upath 1.0.5 dependency, which incorrectly specifies compatibility with node <= 9 Issue described here: https://github.com/anodynos/upath/pull/15 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 4ee93b91..0e77d45b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ language: node_js node_js: - "node" +install: "yarn install --ignore-engines" before_script: "npm install -g codeclimate-test-reporter" script: - yarn run lint