├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── fixtures ├── component_with_multiple_styles.js ├── component_with_quote_in_urls.js ├── component_with_single_line_decorator.js ├── component_with_spacing.js ├── component_with_template_url_ending_by_space.js ├── component_without_relative_period_slash.js ├── index.js └── sample_angular_component_file_string_simple.js └── loader.spec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/angular2-template-loader/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/angular2-template-loader/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/angular2-template-loader/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/angular2-template-loader/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "vsicons.presets.angular": false 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/angular2-template-loader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/angular2-template-loader/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/angular2-template-loader/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/angular2-template-loader/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/component_with_multiple_styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/angular2-template-loader/HEAD/test/fixtures/component_with_multiple_styles.js -------------------------------------------------------------------------------- /test/fixtures/component_with_quote_in_urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/angular2-template-loader/HEAD/test/fixtures/component_with_quote_in_urls.js -------------------------------------------------------------------------------- /test/fixtures/component_with_single_line_decorator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/angular2-template-loader/HEAD/test/fixtures/component_with_single_line_decorator.js -------------------------------------------------------------------------------- /test/fixtures/component_with_spacing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/angular2-template-loader/HEAD/test/fixtures/component_with_spacing.js -------------------------------------------------------------------------------- /test/fixtures/component_with_template_url_ending_by_space.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/angular2-template-loader/HEAD/test/fixtures/component_with_template_url_ending_by_space.js -------------------------------------------------------------------------------- /test/fixtures/component_without_relative_period_slash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/angular2-template-loader/HEAD/test/fixtures/component_without_relative_period_slash.js -------------------------------------------------------------------------------- /test/fixtures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/angular2-template-loader/HEAD/test/fixtures/index.js -------------------------------------------------------------------------------- /test/fixtures/sample_angular_component_file_string_simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/angular2-template-loader/HEAD/test/fixtures/sample_angular_component_file_string_simple.js -------------------------------------------------------------------------------- /test/loader.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/angular2-template-loader/HEAD/test/loader.spec.js --------------------------------------------------------------------------------