├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── examples ├── amd │ ├── README.md │ ├── gulpfile.js │ └── source │ │ └── templates │ │ ├── App.hbs │ │ ├── App │ │ ├── footer.hbs │ │ └── header.hbs │ │ └── Other.item.hbs ├── namespaceByDirectory │ ├── README.md │ ├── gulpfile.js │ └── source │ │ └── templates │ │ ├── App.hbs │ │ ├── App │ │ ├── footer.hbs │ │ └── header.hbs │ │ └── Other.item.hbs ├── partials │ ├── README.md │ ├── gulpfile.js │ ├── package.json │ └── source │ │ ├── index.html │ │ ├── partials │ │ └── partial.hbs │ │ └── templates │ │ └── App.hbs └── singleModule │ ├── README.md │ ├── gulpfile.js │ ├── index.js │ └── templates │ ├── App.hbs │ ├── App │ ├── footer.hbs │ └── header.hbs │ └── Other.item.hbs ├── index.js ├── package.json └── test ├── expected ├── Basic.js ├── Basic_htmlbars.js ├── Basic_namespace.js ├── Basic_node.js ├── Basic_preprocessed.js └── Error.txt ├── fixtures ├── Basic.hbs └── Invalid.hbs └── main.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /test 2 | /examples 3 | /lazdIgnore 4 | /build 5 | .travis.yml 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/README.md -------------------------------------------------------------------------------- /examples/amd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/examples/amd/README.md -------------------------------------------------------------------------------- /examples/amd/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/examples/amd/gulpfile.js -------------------------------------------------------------------------------- /examples/amd/source/templates/App.hbs: -------------------------------------------------------------------------------- 1 | This is the app! -------------------------------------------------------------------------------- /examples/amd/source/templates/App/footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/examples/amd/source/templates/App/footer.hbs -------------------------------------------------------------------------------- /examples/amd/source/templates/App/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/examples/amd/source/templates/App/header.hbs -------------------------------------------------------------------------------- /examples/amd/source/templates/Other.item.hbs: -------------------------------------------------------------------------------- 1 | An item! -------------------------------------------------------------------------------- /examples/namespaceByDirectory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/examples/namespaceByDirectory/README.md -------------------------------------------------------------------------------- /examples/namespaceByDirectory/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/examples/namespaceByDirectory/gulpfile.js -------------------------------------------------------------------------------- /examples/namespaceByDirectory/source/templates/App.hbs: -------------------------------------------------------------------------------- 1 | This is the app! -------------------------------------------------------------------------------- /examples/namespaceByDirectory/source/templates/App/footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/examples/namespaceByDirectory/source/templates/App/footer.hbs -------------------------------------------------------------------------------- /examples/namespaceByDirectory/source/templates/App/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/examples/namespaceByDirectory/source/templates/App/header.hbs -------------------------------------------------------------------------------- /examples/namespaceByDirectory/source/templates/Other.item.hbs: -------------------------------------------------------------------------------- 1 | An item! -------------------------------------------------------------------------------- /examples/partials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/examples/partials/README.md -------------------------------------------------------------------------------- /examples/partials/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/examples/partials/gulpfile.js -------------------------------------------------------------------------------- /examples/partials/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/examples/partials/package.json -------------------------------------------------------------------------------- /examples/partials/source/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/examples/partials/source/index.html -------------------------------------------------------------------------------- /examples/partials/source/partials/partial.hbs: -------------------------------------------------------------------------------- 1 | This is the partial! -------------------------------------------------------------------------------- /examples/partials/source/templates/App.hbs: -------------------------------------------------------------------------------- 1 | This is the app! 2 | {{> partial}} -------------------------------------------------------------------------------- /examples/singleModule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/examples/singleModule/README.md -------------------------------------------------------------------------------- /examples/singleModule/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/examples/singleModule/gulpfile.js -------------------------------------------------------------------------------- /examples/singleModule/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/examples/singleModule/index.js -------------------------------------------------------------------------------- /examples/singleModule/templates/App.hbs: -------------------------------------------------------------------------------- 1 | This is the app! -------------------------------------------------------------------------------- /examples/singleModule/templates/App/footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/examples/singleModule/templates/App/footer.hbs -------------------------------------------------------------------------------- /examples/singleModule/templates/App/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/examples/singleModule/templates/App/header.hbs -------------------------------------------------------------------------------- /examples/singleModule/templates/Other.item.hbs: -------------------------------------------------------------------------------- 1 | An item! -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/package.json -------------------------------------------------------------------------------- /test/expected/Basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/test/expected/Basic.js -------------------------------------------------------------------------------- /test/expected/Basic_htmlbars.js: -------------------------------------------------------------------------------- 1 | BASIC TEMPLATE 2 | -------------------------------------------------------------------------------- /test/expected/Basic_namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/test/expected/Basic_namespace.js -------------------------------------------------------------------------------- /test/expected/Basic_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/test/expected/Basic_node.js -------------------------------------------------------------------------------- /test/expected/Basic_preprocessed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/test/expected/Basic_preprocessed.js -------------------------------------------------------------------------------- /test/expected/Error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/test/expected/Error.txt -------------------------------------------------------------------------------- /test/fixtures/Basic.hbs: -------------------------------------------------------------------------------- 1 | Basic template -------------------------------------------------------------------------------- /test/fixtures/Invalid.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/test/fixtures/Invalid.hbs -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/gulp-handlebars/HEAD/test/main.js --------------------------------------------------------------------------------