Skip to content

Commit

Permalink
build: support Node.js 8.x
Browse files Browse the repository at this point in the history
  • Loading branch information
dougwilson committed Sep 26, 2017
1 parent ea3d605 commit 94fdb67
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -15,6 +15,7 @@ Desktop.ini

# npm
node_modules
package-lock.json
*.log
*.gz

Expand Down
4 changes: 4 additions & 0 deletions .travis.yml
Expand Up @@ -9,6 +9,7 @@ node_js:
- "5.12"
- "6.11"
- "7.10"
- "8.4"
matrix:
include:
- node_js: "8"
Expand All @@ -21,6 +22,9 @@ cache:
directories:
- node_modules
before_install:
# Skip updating shrinkwrap / lock
- "npm config set shrinkwrap false"

# Remove all non-test dependencies
- "npm rm --save-dev connect-redis"

Expand Down
2 changes: 2 additions & 0 deletions appveyor.yml
Expand Up @@ -9,10 +9,12 @@ environment:
- nodejs_version: "5.12"
- nodejs_version: "6.11"
- nodejs_version: "7.10"
- nodejs_version: "8.4"
cache:
- node_modules
install:
- ps: Install-Product node $env:nodejs_version
- npm config set shrinkwrap false
- npm rm --save-dev connect-redis
- if exist node_modules npm prune
- if exist node_modules npm rebuild
Expand Down

0 comments on commit 94fdb67

Please sign in to comment.