├── .eslintrc ├── .gitignore ├── .nvmrc ├── .travis.yml ├── README.md ├── gulp-tasks └── default.js ├── index.js ├── package.json └── test ├── coffeeScript └── coffee.coffee ├── filterOutFiles ├── .jshintrc └── task.js ├── includeRequireExtensions ├── task.js └── task2.jscript ├── noDeps └── noDeps.js ├── passingGulpAndOptionsToTasks └── test.js ├── subtasks └── annotate │ ├── add.js │ ├── docs │ └── comment.js │ └── remove.js ├── test.js └── withDeps └── withDeps.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hontas/gulp-task-loader/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | tmp 3 | 4 | npm-* 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hontas/gulp-task-loader/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hontas/gulp-task-loader/HEAD/README.md -------------------------------------------------------------------------------- /gulp-tasks/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hontas/gulp-task-loader/HEAD/gulp-tasks/default.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hontas/gulp-task-loader/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hontas/gulp-task-loader/HEAD/package.json -------------------------------------------------------------------------------- /test/coffeeScript/coffee.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hontas/gulp-task-loader/HEAD/test/coffeeScript/coffee.coffee -------------------------------------------------------------------------------- /test/filterOutFiles/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "node": true 3 | } 4 | -------------------------------------------------------------------------------- /test/filterOutFiles/task.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function() { 4 | return; 5 | }; 6 | -------------------------------------------------------------------------------- /test/includeRequireExtensions/task.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function() { 4 | return '.js'; 5 | }; 6 | -------------------------------------------------------------------------------- /test/includeRequireExtensions/task2.jscript: -------------------------------------------------------------------------------- 1 | module.exports = function() { 2 | return '.jscript'; 3 | }; 4 | -------------------------------------------------------------------------------- /test/noDeps/noDeps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hontas/gulp-task-loader/HEAD/test/noDeps/noDeps.js -------------------------------------------------------------------------------- /test/passingGulpAndOptionsToTasks/test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function() { 4 | return this; 5 | }; 6 | -------------------------------------------------------------------------------- /test/subtasks/annotate/add.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function() { 4 | return 'add'; 5 | }; 6 | -------------------------------------------------------------------------------- /test/subtasks/annotate/docs/comment.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function() { 4 | return 'comment'; 5 | }; 6 | -------------------------------------------------------------------------------- /test/subtasks/annotate/remove.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function() { 4 | return 'remove'; 5 | }; 6 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hontas/gulp-task-loader/HEAD/test/test.js -------------------------------------------------------------------------------- /test/withDeps/withDeps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hontas/gulp-task-loader/HEAD/test/withDeps/withDeps.js --------------------------------------------------------------------------------