1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

use underscore in node_modules in travis config (#3369)

The cached directory for node_modules has a dash. AFAIK node uses an underscore, not a dash, for node_modules.

Alternatively, remove it from cached directories if the typo isn't causing any problems.
This commit is contained in:
Benjamin Atkin 2017-12-02 09:12:57 -08:00 committed by Tim Neutkens
parent df4974eac8
commit 57c6f80d72

View file

@ -10,7 +10,7 @@
language: "node_js",
node_js: ["6"],
cache: {
directories: ["node-modules"]
directories: ["node_modules"]
},
before_install: [
"rm yarn.lock",