gulpjs / plugin-error

Error handling for vinyl plugins. Just an abstraction of what's in gulp-util with minor reformatting.
MIT License
19 stars 13 forks source link

[WIP] Update eslint & remove JSCS #12

Closed gucong3000 closed 6 years ago

gucong3000 commented 6 years ago

Blocked: https://github.com/gulpjs/eslint-config-gulp/pull/13

demurgos commented 6 years ago

I'll repeat my comment from #11:

plugin-error is part of gulp: it still has to support Node 0.10.

Regarding the other changes, I'll let @phated comment. He did a recent commit to normalize the repo to match the other Gulp repos.

phated commented 6 years ago

As @demurgos said - this isn't being updated until we start working on the gulp 5 stuff which isn't even on the roadmap yet.

gucong3000 commented 6 years ago

I updated my commit to keep support Node 0.10.

.travis.yml:

sudo: false
language: node_js
node_js:
  - 'stable'
  - '8'
  - '6'
  - '4'
  - '0.12'
  - '0.10'
script:
  - if [ "$TRAVIS_NODE_VERSION" = "stable" ]; then npm test; else npm run coveralls; fi