├── .eslintrc ├── .gitattributes ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── gruntfile.js ├── lib ├── html2js.js └── index.js ├── package.json └── test ├── helpers └── template_cache.coffee └── html2js.spec.coffee /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "standard" 3 | } 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ng-html2js-preprocessor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .* 2 | test 3 | 4 | Gruntfile.coffee 5 | CONTRIBUTING.md 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ng-html2js-preprocessor/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ng-html2js-preprocessor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ng-html2js-preprocessor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ng-html2js-preprocessor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ng-html2js-preprocessor/HEAD/README.md -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ng-html2js-preprocessor/HEAD/gruntfile.js -------------------------------------------------------------------------------- /lib/html2js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ng-html2js-preprocessor/HEAD/lib/html2js.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ng-html2js-preprocessor/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ng-html2js-preprocessor/HEAD/package.json -------------------------------------------------------------------------------- /test/helpers/template_cache.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ng-html2js-preprocessor/HEAD/test/helpers/template_cache.coffee -------------------------------------------------------------------------------- /test/html2js.spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karma-runner/karma-ng-html2js-preprocessor/HEAD/test/html2js.spec.coffee --------------------------------------------------------------------------------