├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── fixtures └── subdir │ ├── other │ └── file.txt │ └── somefile.txt └── main.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hillmanov/gulp-manifest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hillmanov/gulp-manifest/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hillmanov/gulp-manifest/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hillmanov/gulp-manifest/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/subdir/other/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/subdir/somefile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hillmanov/gulp-manifest/HEAD/test/main.js --------------------------------------------------------------------------------