├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── examples ├── advanced │ ├── gulpfile.js │ └── package.json └── override-default-help-message │ ├── gulpfile.js │ └── package.json ├── index.js ├── lib ├── attach-help.js ├── calculate-margin.js └── noop.js ├── license ├── package.json ├── readme.md ├── screenshot-aliases.png ├── screenshot-options.png ├── screenshot.png └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmontgomery/gulp-help/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmontgomery/gulp-help/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmontgomery/gulp-help/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmontgomery/gulp-help/HEAD/.travis.yml -------------------------------------------------------------------------------- /examples/advanced/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmontgomery/gulp-help/HEAD/examples/advanced/gulpfile.js -------------------------------------------------------------------------------- /examples/advanced/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmontgomery/gulp-help/HEAD/examples/advanced/package.json -------------------------------------------------------------------------------- /examples/override-default-help-message/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmontgomery/gulp-help/HEAD/examples/override-default-help-message/gulpfile.js -------------------------------------------------------------------------------- /examples/override-default-help-message/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmontgomery/gulp-help/HEAD/examples/override-default-help-message/package.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmontgomery/gulp-help/HEAD/index.js -------------------------------------------------------------------------------- /lib/attach-help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmontgomery/gulp-help/HEAD/lib/attach-help.js -------------------------------------------------------------------------------- /lib/calculate-margin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmontgomery/gulp-help/HEAD/lib/calculate-margin.js -------------------------------------------------------------------------------- /lib/noop.js: -------------------------------------------------------------------------------- 1 | module.exports = function() {}; 2 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmontgomery/gulp-help/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmontgomery/gulp-help/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmontgomery/gulp-help/HEAD/readme.md -------------------------------------------------------------------------------- /screenshot-aliases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmontgomery/gulp-help/HEAD/screenshot-aliases.png -------------------------------------------------------------------------------- /screenshot-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmontgomery/gulp-help/HEAD/screenshot-options.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmontgomery/gulp-help/HEAD/screenshot.png -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chmontgomery/gulp-help/HEAD/test.js --------------------------------------------------------------------------------