Skip to content

Commit

Permalink
Update: remove support for Node 0.x
Browse files Browse the repository at this point in the history
  - Removes support for Node 0.x
  - Removes es6-promise dependency
  - Updates dependencies
  - Updates license year range
  • Loading branch information
mcmath committed May 11, 2017
1 parent 36e5afb commit 8efaa06
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 23 deletions.
1 change: 1 addition & 0 deletions .eslintrc.yml
Expand Up @@ -3,4 +3,5 @@ parserOptions:
ecmaVersion: 6
sourceType: module
env:
es6: true
node: true
4 changes: 1 addition & 3 deletions .travis.yml
Expand Up @@ -2,8 +2,6 @@ language: node_js
node_js:
- "6"
- "4"
- "0.12"
- "0.10"
after_success:
- npm run coveralls
before_deploy:
Expand All @@ -16,7 +14,7 @@ deploy:
secure: ABRzp+20NrgciL4tdftlCINA9MHp2Ldd8R3k+v2ekILOR/n3Vomxd5qbmHhP/AiFWYEUZw1fU7zg6NNaxmtXRKvnLrpkA0aDeFBIphJ/wN/RSyR0hHO4VChf7bQYZnjpw8hJQy3Q3q41McKdTAc0MyoBELLcBh7bODgLzla1YqZRSb95XFJgK1g8umcKQ3HURkBLGSNimyXYqrukRAr7IIp7PYmovQzyEMNTmsSHJiE005/gHWv14ly+MGcRl27HlrDa0WWZMn5oRXUyiLgR7yhmmZOCK2VzC4nhm5J39j0vexY8YuxXyyd7NlUipcwIP9XiMeqX7t6w+DPCskYh4xq7iqV+jC2PRYaL+fKVXvJAJCDFgrSi3pJAtge7EFdcfqLZrdaekmHt9O9BLXKXd0QTEX+snaSW5nc1EwdoRHibUnybRIl5aZnrr88FK8EhtAvkJdhlqb1Ij98+/KHhEvlzgOJIMewykZv8Aa7QqDlBw9zAHJH4ZAxQfPa72lo9gIoc/1I18pUDHbXtzJL+dVEfk/zjrtGnZ7Ag1wJX6pGaNhndhTTIaFhAaDUojQAkeee5WmUTTgTHmjPjiCryXiKfbLhdXL3c3lXD4EnbBP5Gzv2Yu4YQMTVg1OcDi4zduussmN0uf+Ahm9dNIKkvrcTvAwPJ1tOqnbGH6SX75Zs=
skip_cleanup: true
on:
repo: akim-mcmath/gulp-transform
repo: mcmath/gulp-transform
node: "4"
tags: true
after_deploy:
Expand Down
35 changes: 17 additions & 18 deletions package.json
Expand Up @@ -14,11 +14,11 @@
"coveralls": "cat coverage/lcov.info | coveralls"
},
"engines": {
"node": ">=0.10"
"node": ">=4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akim-mcmath/gulp-transform.git"
"url": "git+https://github.com/mcmath/gulp-transform.git"
},
"keywords": [
"gulpplugin",
Expand All @@ -31,28 +31,27 @@
"author": "Akim McMath <akim.elijah.mcmath@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/akim-mcmath/gulp-transform/issues"
"url": "https://github.com/mcmath/gulp-transform/issues"
},
"homepage": "https://github.com/akim-mcmath/gulp-transform#readme",
"homepage": "https://github.com/mcmath/gulp-transform#readme",
"dependencies": {
"es6-promise": "^4.0.5",
"gulp-util": "^3.0.7",
"lodash": "^4.13.1"
"gulp-util": "^3.0.8",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"coffee-script": "^1.10.0",
"coveralls": "^2.11.9",
"eslint": "^2.13.1",
"event-stream": "^3.3.2",
"coffee-script": "^1.12.5",
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"event-stream": "^3.3.4",
"istanbul": "1.1.0-alpha.1",
"mocha": "^3.1.2",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0"
"mocha": "^3.3.0",
"rimraf": "^2.6.1",
"sinon": "^2.2.0",
"sinon-chai": "^2.10.0"
}
}
1 change: 0 additions & 1 deletion src/transform.js
@@ -1,4 +1,3 @@
import {Promise} from 'es6-promise';
import {isBuffer} from 'lodash';
import {err} from './err';

Expand Down
1 change: 0 additions & 1 deletion test/fixtures/fn.coffee
@@ -1,4 +1,3 @@
{Promise} = require 'es6-promise';
{spy} = require 'sinon'

re = /one|two|three/g
Expand Down

0 comments on commit 8efaa06

Please sign in to comment.