├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── CONTRIBUTORS.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── package.json ├── tasks ├── angular-templates.js └── lib │ ├── appender.js │ └── compiler.js └── test ├── angular-templates_test.js ├── expected ├── callback_module.js ├── custom_angular.js ├── custom_bootstrap.js ├── custom_concat.js ├── custom_concat_usemin_not_found.js ├── custom_htmlmin.js ├── custom_module.js ├── custom_prefix.js ├── custom_source.js ├── custom_url.js ├── default_module.js ├── empty_file.js ├── full_url.js ├── html5.js ├── linebreak.js ├── regexp.js ├── relative_url.js ├── relative_url_expand_three.js ├── relative_url_expand_three_two.js ├── single_quotes.js ├── standalone.js ├── task_htmlmin.js ├── undefined_file.js ├── unmerged_files │ ├── empty.js │ ├── html5.js │ ├── one.js │ ├── undefined.js │ └── usemin.js ├── usemin.html ├── usemin │ ├── all.js │ ├── bar.css │ ├── bar.js │ └── foo.js ├── useminUgly.html └── useminUgly │ ├── all.js │ ├── bar.css │ ├── bar.js │ └── foo.js └── fixtures ├── empty.html ├── html5.html ├── linebreak.html ├── one.html ├── regexp.html ├── three ├── three.html └── three_two.html ├── two └── two.html ├── undefined.html ├── unmerged ├── level2 │ ├── empty.html │ ├── html5.html │ └── level3 │ │ └── one.html ├── undefined.html └── usemin.html ├── usemin.html ├── usemin ├── bar.css ├── bar.js └── foo.js ├── useminUgly.html └── useminUgly ├── bar.css ├── bar.js └── foo.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | tmp 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /npm-debug.log 3 | /tmp 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/package.json -------------------------------------------------------------------------------- /tasks/angular-templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/tasks/angular-templates.js -------------------------------------------------------------------------------- /tasks/lib/appender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/tasks/lib/appender.js -------------------------------------------------------------------------------- /tasks/lib/compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/tasks/lib/compiler.js -------------------------------------------------------------------------------- /test/angular-templates_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/angular-templates_test.js -------------------------------------------------------------------------------- /test/expected/callback_module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/callback_module.js -------------------------------------------------------------------------------- /test/expected/custom_angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/custom_angular.js -------------------------------------------------------------------------------- /test/expected/custom_bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/custom_bootstrap.js -------------------------------------------------------------------------------- /test/expected/custom_concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/custom_concat.js -------------------------------------------------------------------------------- /test/expected/custom_concat_usemin_not_found.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/custom_concat_usemin_not_found.js -------------------------------------------------------------------------------- /test/expected/custom_htmlmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/custom_htmlmin.js -------------------------------------------------------------------------------- /test/expected/custom_module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/custom_module.js -------------------------------------------------------------------------------- /test/expected/custom_prefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/custom_prefix.js -------------------------------------------------------------------------------- /test/expected/custom_source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/custom_source.js -------------------------------------------------------------------------------- /test/expected/custom_url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/custom_url.js -------------------------------------------------------------------------------- /test/expected/default_module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/default_module.js -------------------------------------------------------------------------------- /test/expected/empty_file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/empty_file.js -------------------------------------------------------------------------------- /test/expected/full_url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/full_url.js -------------------------------------------------------------------------------- /test/expected/html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/html5.js -------------------------------------------------------------------------------- /test/expected/linebreak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/linebreak.js -------------------------------------------------------------------------------- /test/expected/regexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/regexp.js -------------------------------------------------------------------------------- /test/expected/relative_url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/relative_url.js -------------------------------------------------------------------------------- /test/expected/relative_url_expand_three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/relative_url_expand_three.js -------------------------------------------------------------------------------- /test/expected/relative_url_expand_three_two.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/relative_url_expand_three_two.js -------------------------------------------------------------------------------- /test/expected/single_quotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/single_quotes.js -------------------------------------------------------------------------------- /test/expected/standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/standalone.js -------------------------------------------------------------------------------- /test/expected/task_htmlmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/task_htmlmin.js -------------------------------------------------------------------------------- /test/expected/undefined_file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/undefined_file.js -------------------------------------------------------------------------------- /test/expected/unmerged_files/empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/unmerged_files/empty.js -------------------------------------------------------------------------------- /test/expected/unmerged_files/html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/unmerged_files/html5.js -------------------------------------------------------------------------------- /test/expected/unmerged_files/one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/unmerged_files/one.js -------------------------------------------------------------------------------- /test/expected/unmerged_files/undefined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/unmerged_files/undefined.js -------------------------------------------------------------------------------- /test/expected/unmerged_files/usemin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/unmerged_files/usemin.js -------------------------------------------------------------------------------- /test/expected/usemin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/usemin.html -------------------------------------------------------------------------------- /test/expected/usemin/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/usemin/all.js -------------------------------------------------------------------------------- /test/expected/usemin/bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/usemin/bar.css -------------------------------------------------------------------------------- /test/expected/usemin/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/usemin/bar.js -------------------------------------------------------------------------------- /test/expected/usemin/foo.js: -------------------------------------------------------------------------------- 1 | /** 2 | * foo.js 3 | */ 4 | 5 | var Foo = function() {}; 6 | -------------------------------------------------------------------------------- /test/expected/useminUgly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/useminUgly.html -------------------------------------------------------------------------------- /test/expected/useminUgly/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/expected/useminUgly/all.js -------------------------------------------------------------------------------- /test/expected/useminUgly/bar.css: -------------------------------------------------------------------------------- 1 | body{color:#000;background:#fff} -------------------------------------------------------------------------------- /test/expected/useminUgly/bar.js: -------------------------------------------------------------------------------- 1 | var Bar="bar"; 2 | -------------------------------------------------------------------------------- /test/expected/useminUgly/foo.js: -------------------------------------------------------------------------------- 1 | var Foo=function(){}; 2 | -------------------------------------------------------------------------------- /test/fixtures/empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/html5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/fixtures/html5.html -------------------------------------------------------------------------------- /test/fixtures/linebreak.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/fixtures/linebreak.html -------------------------------------------------------------------------------- /test/fixtures/one.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/fixtures/one.html -------------------------------------------------------------------------------- /test/fixtures/regexp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/fixtures/regexp.html -------------------------------------------------------------------------------- /test/fixtures/three/three.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/fixtures/three/three.html -------------------------------------------------------------------------------- /test/fixtures/three/three_two.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/fixtures/three/three_two.html -------------------------------------------------------------------------------- /test/fixtures/two/two.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/fixtures/two/two.html -------------------------------------------------------------------------------- /test/fixtures/undefined.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/fixtures/undefined.html -------------------------------------------------------------------------------- /test/fixtures/unmerged/level2/empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/unmerged/level2/html5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/fixtures/unmerged/level2/html5.html -------------------------------------------------------------------------------- /test/fixtures/unmerged/level2/level3/one.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/fixtures/unmerged/level2/level3/one.html -------------------------------------------------------------------------------- /test/fixtures/unmerged/undefined.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/fixtures/unmerged/undefined.html -------------------------------------------------------------------------------- /test/fixtures/unmerged/usemin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/fixtures/unmerged/usemin.html -------------------------------------------------------------------------------- /test/fixtures/usemin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/fixtures/usemin.html -------------------------------------------------------------------------------- /test/fixtures/usemin/bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/fixtures/usemin/bar.css -------------------------------------------------------------------------------- /test/fixtures/usemin/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/fixtures/usemin/bar.js -------------------------------------------------------------------------------- /test/fixtures/usemin/foo.js: -------------------------------------------------------------------------------- 1 | /** 2 | * foo.js 3 | */ 4 | 5 | var Foo = function() {}; 6 | -------------------------------------------------------------------------------- /test/fixtures/useminUgly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/fixtures/useminUgly.html -------------------------------------------------------------------------------- /test/fixtures/useminUgly/bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/fixtures/useminUgly/bar.css -------------------------------------------------------------------------------- /test/fixtures/useminUgly/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-angular-templates/HEAD/test/fixtures/useminUgly/bar.js -------------------------------------------------------------------------------- /test/fixtures/useminUgly/foo.js: -------------------------------------------------------------------------------- 1 | /** 2 | * foo.js 3 | */ 4 | 5 | var Foo = function() {}; 6 | --------------------------------------------------------------------------------