├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── expected ├── example.js ├── exampleWithCustomTemplate.js ├── exampleWithExportCommon.js ├── exampleWithExportCommonModuleNameNoGenerate.js ├── exampleWithExportSystem.js ├── exampleWithExportSystemModuleNameNoGenerate.js ├── exampleWithModuleName.js ├── exampleWithModuleNameFunction.js ├── exampleWithModuleNameNoGenerate.js ├── exampleWithPrefix.js ├── exampleWithRename.js └── exampleWithStripPrefix.js ├── fixtures └── example.html └── main.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | temp/ 4 | .idea/ 5 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/package.json -------------------------------------------------------------------------------- /test/expected/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/test/expected/example.js -------------------------------------------------------------------------------- /test/expected/exampleWithCustomTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/test/expected/exampleWithCustomTemplate.js -------------------------------------------------------------------------------- /test/expected/exampleWithExportCommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/test/expected/exampleWithExportCommon.js -------------------------------------------------------------------------------- /test/expected/exampleWithExportCommonModuleNameNoGenerate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/test/expected/exampleWithExportCommonModuleNameNoGenerate.js -------------------------------------------------------------------------------- /test/expected/exampleWithExportSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/test/expected/exampleWithExportSystem.js -------------------------------------------------------------------------------- /test/expected/exampleWithExportSystemModuleNameNoGenerate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/test/expected/exampleWithExportSystemModuleNameNoGenerate.js -------------------------------------------------------------------------------- /test/expected/exampleWithModuleName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/test/expected/exampleWithModuleName.js -------------------------------------------------------------------------------- /test/expected/exampleWithModuleNameFunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/test/expected/exampleWithModuleNameFunction.js -------------------------------------------------------------------------------- /test/expected/exampleWithModuleNameNoGenerate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/test/expected/exampleWithModuleNameNoGenerate.js -------------------------------------------------------------------------------- /test/expected/exampleWithPrefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/test/expected/exampleWithPrefix.js -------------------------------------------------------------------------------- /test/expected/exampleWithRename.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/test/expected/exampleWithRename.js -------------------------------------------------------------------------------- /test/expected/exampleWithStripPrefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/test/expected/exampleWithStripPrefix.js -------------------------------------------------------------------------------- /test/fixtures/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/test/fixtures/example.html -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklagendijk/gulp-ng-html2js/HEAD/test/main.js --------------------------------------------------------------------------------