diff --git a/.travis.yml b/.travis.yml index 2f8320b..683a9e6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,19 +1,21 @@ language: node_js node_js: - - "stable" - - "5" - - "5.1" - - "6" + - "lts/*" + - "node" + - "12" + - "11" + - "10" + - "9" env: - ENV="development" -install: - - npm install - before_script: - npm install -g gulp +install: + - npm install + after_success: 'npm run coveralls' script: npm test \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..6bf36cb --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,47 @@ +0.1.0 - 11/27/2019 + + - Adapting to changes in gulp 4.0 (#9) + - Removing CI tests for older Node.js versions below 5.x. + - Removing support for Node below 9.x. + +0.0.4 - 11/11/2016 + + - task() and module() may take absolute or relative paths + - using a fork of [node-introspect](https://github.com/orzarchi/node-introspect.git) instead of [parse-function](https://github.com/tunnckoCore/parse-function) + - adopting [https://github.com/Flet/semistandard](semistandard) style + +0.0.33 - 05/03/2016 + + - Updating depencendies and adapting to changes + +0.0.32 - 04/02/2016 + + - Correcting an example in this file + +0.0.31 - 03/13/2016 + + - options.argv for "runningTasks" test + - options.parentDir + - updating documentation + - extending test suite, adding code coverage report + +0.0.3 - 03/12/2016 + + - ES2015 rewrite + - CI using Travis + - using and providing [lodash](https://github.com/lodash/lodash) by default + - Adding "standardTask" and "getPath" helpers + - supporting [gulp-load-plugins](https://www.npmjs.com/package/gulp-load-plugins)'s lazy loading of gulp plugins + +0.0.2 - 02/01/2016 + + - Updating dependencies + - Adding "runningTasks" helper function + - Exposing gulp-util as "gutil" by default + - Parsing of multi-line comments rewritten + - added new options : noModules, noBuiltin, noRunningTasks + - ES2015+ support with [parse-function](https://github.com/tunnckoCore/parse-function) + +0.0.1 - 12/20/2015 + + - Initial release, incorporating Resolver and tests from [dijs](https://www.npmjs.com/package/dijs). \ No newline at end of file diff --git a/README.md b/README.md index ecf2b8b..df2c0ed 100644 --- a/README.md +++ b/README.md @@ -479,55 +479,6 @@ let di = require('gulp-di')(gulp, { }); ```` -## Changelog - -0.1.0 - 11/27/2019 - - - Adapting to changes in gulp 4.0 (#9) - - Removing CI tests for older Node.js versions below 5.x - -0.0.4 - 11/11/2016 - - - task() and module() may take absolute or relative paths - - using a fork of [node-introspect](https://github.com/orzarchi/node-introspect.git) instead of [parse-function](https://github.com/tunnckoCore/parse-function) - - adopting [https://github.com/Flet/semistandard](semistandard) style - -0.0.33 - 05/03/2016 - - - Updating depencendies and adapting to changes - -0.0.32 - 04/02/2016 - - - Correcting an example in this file - -0.0.31 - 03/13/2016 - - - options.argv for "runningTasks" test - - options.parentDir - - updating documentation - - extending test suite, adding code coverage report - -0.0.3 - 03/12/2016 - - - ES2015 rewrite - - CI using Travis - - using and providing [lodash](https://github.com/lodash/lodash) by default - - Adding "standardTask" and "getPath" helpers - - supporting [gulp-load-plugins](https://www.npmjs.com/package/gulp-load-plugins)'s lazy loading of gulp plugins - -0.0.2 - 02/01/2016 - - - Updating dependencies - - Adding "runningTasks" helper function - - Exposing gulp-util as "gutil" by default - - Parsing of multi-line comments rewritten - - added new options : noModules, noBuiltin, noRunningTasks - - ES2015+ support with [parse-function](https://github.com/tunnckoCore/parse-function) - -0.0.1 - 12/20/2015 - - - Initial release, incorporating Resolver and tests from [dijs](https://www.npmjs.com/package/dijs). - -## Licence +## License MIT