├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── index.js ├── lib ├── tap.js └── tap.js.map ├── package.json ├── src └── tap.coffee ├── tests ├── base.test.coffee ├── dest.test.coffee ├── fixtures │ ├── img.png │ ├── js.js │ └── s.scss └── throws.test.coffee └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geejs/gulp-tap/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geejs/gulp-tap/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geejs/gulp-tap/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geejs/gulp-tap/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geejs/gulp-tap/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/tap.js'); 2 | -------------------------------------------------------------------------------- /lib/tap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geejs/gulp-tap/HEAD/lib/tap.js -------------------------------------------------------------------------------- /lib/tap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geejs/gulp-tap/HEAD/lib/tap.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geejs/gulp-tap/HEAD/package.json -------------------------------------------------------------------------------- /src/tap.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geejs/gulp-tap/HEAD/src/tap.coffee -------------------------------------------------------------------------------- /tests/base.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geejs/gulp-tap/HEAD/tests/base.test.coffee -------------------------------------------------------------------------------- /tests/dest.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geejs/gulp-tap/HEAD/tests/dest.test.coffee -------------------------------------------------------------------------------- /tests/fixtures/img.png: -------------------------------------------------------------------------------- 1 | I'm an image file 2 | -------------------------------------------------------------------------------- /tests/fixtures/js.js: -------------------------------------------------------------------------------- 1 | I'm a javascript file 2 | -------------------------------------------------------------------------------- /tests/fixtures/s.scss: -------------------------------------------------------------------------------- 1 | I'm a SASS file 2 | -------------------------------------------------------------------------------- /tests/throws.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geejs/gulp-tap/HEAD/tests/throws.test.coffee -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geejs/gulp-tap/HEAD/yarn.lock --------------------------------------------------------------------------------