Skip to content

Commit

Permalink
Removed node_modules/ caching from project skeleton Travis CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
insin committed May 18, 2017
1 parent 0e068ac commit b129800
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 26 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

**Fixed:**

- Removed `node_modules/` caching from default Travis CI config in project skeletons, as it's been reported to cause build failures [[#271](https://github.com/insin/nwb/issues/271)]
- An output directory specified with a trailing slash is now cleaned properly when creating a build.
- A `loader` configured for a Webpack rule is no longer moved into the `options` object when an options object hasn't been explicitly configured [[#256](https://github.com/insin/nwb/issues/256)]
- Fixed cleaning nested dirs, including a demo app's `demo/dist` dir.
Expand Down
4 changes: 0 additions & 4 deletions templates/inferno-app/_.travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ language: node_js
node_js:
- 6

cache:
directories:
- node_modules

before_install:
- npm install codecov.io coveralls

Expand Down
4 changes: 0 additions & 4 deletions templates/preact-app/_.travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ language: node_js
node_js:
- 6

cache:
directories:
- node_modules

before_install:
- npm install codecov.io coveralls

Expand Down
6 changes: 1 addition & 5 deletions templates/react-app/_.travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@ sudo: false

language: node_js
node_js:
- 4

cache:
directories:
- node_modules
- 6

before_install:
- npm install codecov.io coveralls
Expand Down
5 changes: 1 addition & 4 deletions templates/react-component/_.travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@ sudo: false
language: node_js
node_js:
- 4

cache:
directories:
- node_modules
- 6

before_install:
- npm install codecov.io coveralls
Expand Down
6 changes: 1 addition & 5 deletions templates/web-app/_.travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@ sudo: false

language: node_js
node_js:
- 4

cache:
directories:
- node_modules
- 6

before_install:
- npm install codecov.io coveralls
Expand Down
5 changes: 1 addition & 4 deletions templates/web-module/_.travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@ sudo: false
language: node_js
node_js:
- 4

cache:
directories:
- node_modules
- 6

before_install:
- npm install codecov.io coveralls
Expand Down

0 comments on commit b129800

Please sign in to comment.