Skip to content
This repository has been archived by the owner on Dec 29, 2020. It is now read-only.

Commit

Permalink
Drop support for node 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
markelog committed Apr 30, 2014
1 parent b3645db commit d5a08ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: node_js
node_js:
- "0.8"
- "0.10"

env:
Expand All @@ -14,4 +13,4 @@ deploy:
email: "[email protected]"
api_key: "${NPM_KEY}"
on:
tags: true
tags: true
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"checker"
],
"engines": {
"node": ">=0.8.0"
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt test"
Expand Down

4 comments on commit d5a08ef

@gustavohenke
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't get, why is Travis build still failing? https://travis-ci.org/gustavohenke/grunt-jscs-checker/builds/24113719

@nschonni
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like NPM is having a bad day again https://travis-ci.org/gustavohenke/grunt-jscs-checker/builds/24113719#L358
A restart may fix it

@markelog
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess that too @nschonni, in travis log –

�[0m�[37m�[40mnpm�[0m �[0m�[31m�[40mERR!�[0m�[35m�[0m Error: shasum check failed for /home/travis/tmp/npm-3259-5n-0Vjh0/1398873474015-0.9416041737422347/tmp.tgz
�[0m�[37m�[40mnpm�[0m �[0m�[31m�[40mERR!�[0m�[35m�[0m Expected: 6ddd21bd2a31417b92727dd585f8a6f37608ebee
�[0m�[37m�[40mnpm�[0m �[0m�[31m�[40mERR!�[0m�[35m�[0m Actual: 2240c0f6ad9be4fdc7b77cd8287f6d58c29db0df
�[0m�[37m�[40mnpm�[0m �[0m�[31m�[40mERR!�[0m�[35m�[0m From: https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz
�[0m�[37m�[40mnpm�[0m �[0m�[31m�[40mERR!�[0m�[35m�[0m at /home/travis/.nvm/v0.10.26/lib/node_modules/npm/node_modules/sha/index.js:38:8
�[0m�[37m�[40mnpm�[0m �[0m�[31m�[40mERR!�[0m�[35m�[0m at ReadStream. (/home/travis/.nvm/v0.10.26/lib/node_modules/npm/node_modules/sha/index.js:85:7)
�[0m�[37m�[40mnpm�[0m �[0m�[31m�[40mERR!�[0m�[35m�[0m at ReadStream.EventEmitter.emit (events.js:117:20)
�[0m�[37m�[40mnpm�[0m �[0m�[31m�[40mERR!�[0m�[35m�[0m at _stream_readable.js:920:16
�[0m�[37m�[40mnpm�[0m �[0m�[31m�[40mERR!�[0m�[35m�[0m at process._tickCallback (node.js:415:13)
�[0m�[37m�[40mnpm�[0m �[0m�[31m�[40mERR!�[0m�[35m�[0m If you need help, you may report this entire log,
�[0m�[37m�[40mnpm�[0m �[0m�[31m�[40mERR!�[0m�[35m�[0m including the npm and node versions, at:
�[0m�[37m�[40mnpm�[0m �[0m�[31m�[40mERR!�[0m�[35m�[0m http://github.com/npm/npm/issues

@gustavohenke
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yup, that did the trick.

Please sign in to comment.