├── .gitattributes ├── .gitignore ├── .jshintrc ├── index.js ├── package.json ├── readme.md └── test.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingro/gulp-template-compile/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingro/gulp-template-compile/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingro/gulp-template-compile/HEAD/.jshintrc -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingro/gulp-template-compile/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingro/gulp-template-compile/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingro/gulp-template-compile/HEAD/readme.md -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingro/gulp-template-compile/HEAD/test.js --------------------------------------------------------------------------------