├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── lib └── file.js ├── package.json └── test └── file.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmingoia/gulp-file/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmingoia/gulp-file/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmingoia/gulp-file/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmingoia/gulp-file/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmingoia/gulp-file/HEAD/README.md -------------------------------------------------------------------------------- /lib/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmingoia/gulp-file/HEAD/lib/file.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmingoia/gulp-file/HEAD/package.json -------------------------------------------------------------------------------- /test/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmingoia/gulp-file/HEAD/test/file.js --------------------------------------------------------------------------------