├── .editorconfig ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .jshintrc ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING ├── Gruntfile.js ├── LICENSE-MIT ├── README.md ├── docs └── changes_from_0.3.x_to_0.4.x.md ├── package.json ├── tasks ├── closureBuilder.js ├── closureCompiler.js ├── closureDepsWriter.js └── closureTools.js ├── temp └── .gitignore └── test ├── case ├── closureMock │ └── base.js ├── externs.js ├── index.html └── js │ ├── app.js │ ├── app │ ├── controllers │ │ ├── entries.js │ │ └── todos.js │ ├── models │ │ ├── store.js │ │ └── todo.js │ ├── router.js │ ├── templates │ │ └── hbsCompiled.js │ └── views │ │ ├── application.js │ │ ├── clear_button.js │ │ ├── filters.js │ │ ├── items.js │ │ └── stats.js │ └── dist │ └── .gitignore ├── expected ├── build.bundled.js ├── build.compiled.js ├── compiler.compiled.js ├── deps.js └── helpers │ ├── bar.js │ └── foo.js ├── fixtures └── configs.js └── grunt-closure-tools_test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/README.md -------------------------------------------------------------------------------- /docs/changes_from_0.3.x_to_0.4.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/docs/changes_from_0.3.x_to_0.4.x.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/package.json -------------------------------------------------------------------------------- /tasks/closureBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/tasks/closureBuilder.js -------------------------------------------------------------------------------- /tasks/closureCompiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/tasks/closureCompiler.js -------------------------------------------------------------------------------- /tasks/closureDepsWriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/tasks/closureDepsWriter.js -------------------------------------------------------------------------------- /tasks/closureTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/tasks/closureTools.js -------------------------------------------------------------------------------- /temp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test/case/closureMock/base.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @provideGoog 3 | */ 4 | -------------------------------------------------------------------------------- /test/case/externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/test/case/externs.js -------------------------------------------------------------------------------- /test/case/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/test/case/index.html -------------------------------------------------------------------------------- /test/case/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/test/case/js/app.js -------------------------------------------------------------------------------- /test/case/js/app/controllers/entries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/test/case/js/app/controllers/entries.js -------------------------------------------------------------------------------- /test/case/js/app/controllers/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/test/case/js/app/controllers/todos.js -------------------------------------------------------------------------------- /test/case/js/app/models/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/test/case/js/app/models/store.js -------------------------------------------------------------------------------- /test/case/js/app/models/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/test/case/js/app/models/todo.js -------------------------------------------------------------------------------- /test/case/js/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/test/case/js/app/router.js -------------------------------------------------------------------------------- /test/case/js/app/templates/hbsCompiled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/test/case/js/app/templates/hbsCompiled.js -------------------------------------------------------------------------------- /test/case/js/app/views/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/test/case/js/app/views/application.js -------------------------------------------------------------------------------- /test/case/js/app/views/clear_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/test/case/js/app/views/clear_button.js -------------------------------------------------------------------------------- /test/case/js/app/views/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/test/case/js/app/views/filters.js -------------------------------------------------------------------------------- /test/case/js/app/views/items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/test/case/js/app/views/items.js -------------------------------------------------------------------------------- /test/case/js/app/views/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/test/case/js/app/views/stats.js -------------------------------------------------------------------------------- /test/case/js/dist/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test/expected/build.bundled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/test/expected/build.bundled.js -------------------------------------------------------------------------------- /test/expected/build.compiled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/test/expected/build.compiled.js -------------------------------------------------------------------------------- /test/expected/compiler.compiled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/test/expected/compiler.compiled.js -------------------------------------------------------------------------------- /test/expected/deps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/test/expected/deps.js -------------------------------------------------------------------------------- /test/expected/helpers/bar.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expected/helpers/foo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/configs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/test/fixtures/configs.js -------------------------------------------------------------------------------- /test/grunt-closure-tools_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thanpolas/grunt-closure-tools/HEAD/test/grunt-closure-tools_test.js --------------------------------------------------------------------------------