Skip to content

Commit

Permalink
Changes for Node 8
Browse files Browse the repository at this point in the history
1. Start building on travis with Node 8 since it will be LTS soon (it
should slightly speed up builds as well)
2. Add package-lock.json to .gitignore, this is a new npm-generated file
that we won't be submitting to GitHub (it changes almost every time you run
`npm install`).
3. Add package.json to .gitattributes to fix line endings caused by this
npm bug: npm/npm#17161
  • Loading branch information
mramato committed Oct 3, 2017
1 parent 7376a74 commit 650c938
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitattributes
@@ -1,2 +1,3 @@
# Auto detect text files and perform LF normalization
* text=auto
* text=auto
package.json text eol=lf
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -24,6 +24,7 @@ Thumbs.db
/node_modules
npm-debug.log
npm-debug.log.*
package-lock.json

# WebStorm user-specific
.idea/workspace.xml
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,6 +1,6 @@
language: node_js
node_js:
- "6"
- "8"
sudo: false
before_script:
- export DISPLAY=:99.0
Expand Down

0 comments on commit 650c938

Please sign in to comment.