├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .jshintrc ├── AUTHORS ├── CHANGELOG ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE-MIT ├── README.md ├── docs ├── handlebars-examples.md ├── handlebars-options.md ├── handlebars-overview.md └── overview.md ├── package.json ├── tasks └── handlebars.js └── test ├── expected ├── amd_compile.js ├── amd_compile_array.js ├── amd_compile_direct.js ├── amd_compile_function.js ├── amd_compile_string_deps.js ├── amd_compile_string_path.js ├── amd_namespace.js ├── amd_namespace_as_function.js ├── amd_partials_no_namespace.js ├── amd_partials_use_namespace.js ├── commonjs_compile.js ├── commonjs_compile_direct.js ├── custom_separator.js ├── handlebars-node.js ├── handlebars.js ├── handlebarsnowrap.js ├── known_helpers.js ├── namespace_as_function.js ├── no_namespace.js ├── ns_nested.js ├── ns_nested_this.js ├── only_known_helpers.js ├── partial_regex.js ├── partials_path_regex.js ├── partials_use_namespace.js ├── partials_use_namespace_multiple_templates.js ├── process_ast.js ├── process_partial_name.js ├── processcontent.js ├── processname.js ├── uglyfile.js └── unknown_helpers.js ├── fixtures ├── _partial.hbs ├── _weird_prefix_partial.hbs ├── amd.html ├── basic.hbs ├── commonjs.html ├── has-spaces.hbs ├── it's-a-bad-filename.hbs ├── modules │ ├── countries │ │ └── basic.hbs │ └── treeNav │ │ └── leaves │ │ └── basic.hbs ├── one.hbs ├── par_partial.hbs ├── partials │ └── partial.hbs └── uses_helpers.hbs └── handlebars_test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | tmp 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/.jshintrc -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/README.md -------------------------------------------------------------------------------- /docs/handlebars-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/docs/handlebars-examples.md -------------------------------------------------------------------------------- /docs/handlebars-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/docs/handlebars-options.md -------------------------------------------------------------------------------- /docs/handlebars-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/docs/handlebars-overview.md -------------------------------------------------------------------------------- /docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/docs/overview.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/package.json -------------------------------------------------------------------------------- /tasks/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/tasks/handlebars.js -------------------------------------------------------------------------------- /test/expected/amd_compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/amd_compile.js -------------------------------------------------------------------------------- /test/expected/amd_compile_array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/amd_compile_array.js -------------------------------------------------------------------------------- /test/expected/amd_compile_direct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/amd_compile_direct.js -------------------------------------------------------------------------------- /test/expected/amd_compile_function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/amd_compile_function.js -------------------------------------------------------------------------------- /test/expected/amd_compile_string_deps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/amd_compile_string_deps.js -------------------------------------------------------------------------------- /test/expected/amd_compile_string_path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/amd_compile_string_path.js -------------------------------------------------------------------------------- /test/expected/amd_namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/amd_namespace.js -------------------------------------------------------------------------------- /test/expected/amd_namespace_as_function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/amd_namespace_as_function.js -------------------------------------------------------------------------------- /test/expected/amd_partials_no_namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/amd_partials_no_namespace.js -------------------------------------------------------------------------------- /test/expected/amd_partials_use_namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/amd_partials_use_namespace.js -------------------------------------------------------------------------------- /test/expected/commonjs_compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/commonjs_compile.js -------------------------------------------------------------------------------- /test/expected/commonjs_compile_direct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/commonjs_compile_direct.js -------------------------------------------------------------------------------- /test/expected/custom_separator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/custom_separator.js -------------------------------------------------------------------------------- /test/expected/handlebars-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/handlebars-node.js -------------------------------------------------------------------------------- /test/expected/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/handlebars.js -------------------------------------------------------------------------------- /test/expected/handlebarsnowrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/handlebarsnowrap.js -------------------------------------------------------------------------------- /test/expected/known_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/known_helpers.js -------------------------------------------------------------------------------- /test/expected/namespace_as_function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/namespace_as_function.js -------------------------------------------------------------------------------- /test/expected/no_namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/no_namespace.js -------------------------------------------------------------------------------- /test/expected/ns_nested.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/ns_nested.js -------------------------------------------------------------------------------- /test/expected/ns_nested_this.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/ns_nested_this.js -------------------------------------------------------------------------------- /test/expected/only_known_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/only_known_helpers.js -------------------------------------------------------------------------------- /test/expected/partial_regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/partial_regex.js -------------------------------------------------------------------------------- /test/expected/partials_path_regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/partials_path_regex.js -------------------------------------------------------------------------------- /test/expected/partials_use_namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/partials_use_namespace.js -------------------------------------------------------------------------------- /test/expected/partials_use_namespace_multiple_templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/partials_use_namespace_multiple_templates.js -------------------------------------------------------------------------------- /test/expected/process_ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/process_ast.js -------------------------------------------------------------------------------- /test/expected/process_partial_name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/process_partial_name.js -------------------------------------------------------------------------------- /test/expected/processcontent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/processcontent.js -------------------------------------------------------------------------------- /test/expected/processname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/processname.js -------------------------------------------------------------------------------- /test/expected/uglyfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/uglyfile.js -------------------------------------------------------------------------------- /test/expected/unknown_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/expected/unknown_helpers.js -------------------------------------------------------------------------------- /test/fixtures/_partial.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/fixtures/_partial.hbs -------------------------------------------------------------------------------- /test/fixtures/_weird_prefix_partial.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/fixtures/_weird_prefix_partial.hbs -------------------------------------------------------------------------------- /test/fixtures/amd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/fixtures/amd.html -------------------------------------------------------------------------------- /test/fixtures/basic.hbs: -------------------------------------------------------------------------------- 1 | Basic template that does nothing. -------------------------------------------------------------------------------- /test/fixtures/commonjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/fixtures/commonjs.html -------------------------------------------------------------------------------- /test/fixtures/has-spaces.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/fixtures/has-spaces.hbs -------------------------------------------------------------------------------- /test/fixtures/it's-a-bad-filename.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/fixtures/it's-a-bad-filename.hbs -------------------------------------------------------------------------------- /test/fixtures/modules/countries/basic.hbs: -------------------------------------------------------------------------------- 1 | Basic template that does nothing. -------------------------------------------------------------------------------- /test/fixtures/modules/treeNav/leaves/basic.hbs: -------------------------------------------------------------------------------- 1 | Basic template that does nothing. -------------------------------------------------------------------------------- /test/fixtures/one.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/fixtures/one.hbs -------------------------------------------------------------------------------- /test/fixtures/par_partial.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/fixtures/par_partial.hbs -------------------------------------------------------------------------------- /test/fixtures/partials/partial.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/fixtures/partials/partial.hbs -------------------------------------------------------------------------------- /test/fixtures/uses_helpers.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/fixtures/uses_helpers.hbs -------------------------------------------------------------------------------- /test/handlebars_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntjs/grunt-contrib-handlebars/HEAD/test/handlebars_test.js --------------------------------------------------------------------------------