Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for Node.js v0.10 and v0.12 #87

Merged
merged 1 commit into from
Nov 23, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,11 @@ node_js:
- 6
- 5
- 4
- '0.12'
- '0.10'

script:
- npm run test-mocha
- npm run test-phantomjs
- if [[ "$TRAVIS_NODE_VERSION" != "0.1"* ]]; then npm run test-readme; fi
- npm run test-readme
- npm run check-style

after_script:
Expand Down
4 changes: 1 addition & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ environment:
- nodejs_version: 6
- nodejs_version: 5
- nodejs_version: 4
- nodejs_version: '0.12'
- nodejs_version: '0.10'

install:
- ps: Install-Product node $env:nodejs_version
Expand All @@ -27,7 +25,7 @@ test_script:
- npm --version
- npm run test-mocha
- npm run test-phantomjs
- if not "%nodejs_version:~0,3%" == "0.1" npm run test-readme
- npm run test-readme
- npm run check-style

# Don't actually build
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
"url": "https://jeremie.astori.fr"
},
"license": "MIT",
"engines": {
"node": ">=4"
},
"bugs": {
"url": "https://github.com/astorije/chai-immutable/issues"
},
Expand Down