├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── index.js ├── package.json └── test ├── expected ├── basic.both_types.txt ├── basic.main_only.txt ├── basic.mixed_characters.txt ├── basic.no_tasks.txt ├── basic.sub_only.txt ├── custom.colon.txt └── custom.tilde.txt └── main.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/gulp-task-listing/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/gulp-task-listing/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/gulp-task-listing/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/gulp-task-listing/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/gulp-task-listing/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/gulp-task-listing/HEAD/package.json -------------------------------------------------------------------------------- /test/expected/basic.both_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/gulp-task-listing/HEAD/test/expected/basic.both_types.txt -------------------------------------------------------------------------------- /test/expected/basic.main_only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/gulp-task-listing/HEAD/test/expected/basic.main_only.txt -------------------------------------------------------------------------------- /test/expected/basic.mixed_characters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/gulp-task-listing/HEAD/test/expected/basic.mixed_characters.txt -------------------------------------------------------------------------------- /test/expected/basic.no_tasks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/gulp-task-listing/HEAD/test/expected/basic.no_tasks.txt -------------------------------------------------------------------------------- /test/expected/basic.sub_only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/gulp-task-listing/HEAD/test/expected/basic.sub_only.txt -------------------------------------------------------------------------------- /test/expected/custom.colon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/gulp-task-listing/HEAD/test/expected/custom.colon.txt -------------------------------------------------------------------------------- /test/expected/custom.tilde.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/gulp-task-listing/HEAD/test/expected/custom.tilde.txt -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/gulp-task-listing/HEAD/test/main.js --------------------------------------------------------------------------------