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:
parent
df4974eac8
commit
57c6f80d72
|
@ -10,7 +10,7 @@
|
|||
language: "node_js",
|
||||
node_js: ["6"],
|
||||
cache: {
|
||||
directories: ["node-modules"]
|
||||
directories: ["node_modules"]
|
||||
},
|
||||
before_install: [
|
||||
"rm yarn.lock",
|
||||
|
|
Loading…
Reference in a new issue