├── .editorconfig ├── .gitignore ├── .travis.yml ├── .vscode └── launch.json ├── CHANGELOG.md ├── LICENSE ├── README.V1.md ├── README.md ├── index.js ├── package.json ├── spec ├── api.spec.js ├── browser.spec.js ├── end_to_end.spec.js ├── fixtures │ ├── a-dir │ │ ├── file-a.css │ │ ├── file-a.js │ │ ├── file-b.css │ │ └── file-b.js │ ├── app.css │ ├── astyle.css │ ├── entry.js │ ├── exclude.css │ ├── external │ │ ├── external-entry.js │ │ ├── external-style.css │ │ ├── index.html │ │ ├── node_modules │ │ │ ├── fake-a-package │ │ │ │ ├── fake-a-bundle.js │ │ │ │ ├── fake-a-entry.js │ │ │ │ └── package.json │ │ │ ├── fake-b-package │ │ │ │ ├── fake-b-bundle.js │ │ │ │ ├── fake-b-entry.js │ │ │ │ └── package.json │ │ │ ├── fake-c-package │ │ │ │ ├── fake-c-bundle.js │ │ │ │ ├── fake-c-entry.js │ │ │ │ └── package.json │ │ │ └── fake-other-package │ │ │ │ ├── fake-other-bundle.js │ │ │ │ └── package.json │ │ └── package.json │ ├── glob-a.css │ ├── glob-a.js │ ├── glob-b.css │ ├── glob-b.js │ ├── glob.css │ ├── glob.js │ ├── index-no-inject.html │ ├── index.html │ └── other ├── option_validation.spec.js └── support │ └── jasmine.json ├── typings.d.ts └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/README.V1.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/package.json -------------------------------------------------------------------------------- /spec/api.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/api.spec.js -------------------------------------------------------------------------------- /spec/browser.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/browser.spec.js -------------------------------------------------------------------------------- /spec/end_to_end.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/end_to_end.spec.js -------------------------------------------------------------------------------- /spec/fixtures/a-dir/file-a.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/a-dir/file-a.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/a-dir/file-b.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/a-dir/file-b.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/app.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | font-size: 24px; 3 | } -------------------------------------------------------------------------------- /spec/fixtures/astyle.css: -------------------------------------------------------------------------------- 1 | h2 { 2 | font-size: 20px; 3 | } -------------------------------------------------------------------------------- /spec/fixtures/entry.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/exclude.css: -------------------------------------------------------------------------------- 1 | .exclude { 2 | font-size: 24px; 3 | } 4 | -------------------------------------------------------------------------------- /spec/fixtures/external/external-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/fixtures/external/external-entry.js -------------------------------------------------------------------------------- /spec/fixtures/external/external-style.css: -------------------------------------------------------------------------------- 1 | h2 { 2 | font-size: 16px; 3 | } -------------------------------------------------------------------------------- /spec/fixtures/external/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/fixtures/external/index.html -------------------------------------------------------------------------------- /spec/fixtures/external/node_modules/fake-a-package/fake-a-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/fixtures/external/node_modules/fake-a-package/fake-a-bundle.js -------------------------------------------------------------------------------- /spec/fixtures/external/node_modules/fake-a-package/fake-a-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/fixtures/external/node_modules/fake-a-package/fake-a-entry.js -------------------------------------------------------------------------------- /spec/fixtures/external/node_modules/fake-a-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/fixtures/external/node_modules/fake-a-package/package.json -------------------------------------------------------------------------------- /spec/fixtures/external/node_modules/fake-b-package/fake-b-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/fixtures/external/node_modules/fake-b-package/fake-b-bundle.js -------------------------------------------------------------------------------- /spec/fixtures/external/node_modules/fake-b-package/fake-b-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/fixtures/external/node_modules/fake-b-package/fake-b-entry.js -------------------------------------------------------------------------------- /spec/fixtures/external/node_modules/fake-b-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/fixtures/external/node_modules/fake-b-package/package.json -------------------------------------------------------------------------------- /spec/fixtures/external/node_modules/fake-c-package/fake-c-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/fixtures/external/node_modules/fake-c-package/fake-c-bundle.js -------------------------------------------------------------------------------- /spec/fixtures/external/node_modules/fake-c-package/fake-c-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/fixtures/external/node_modules/fake-c-package/fake-c-entry.js -------------------------------------------------------------------------------- /spec/fixtures/external/node_modules/fake-c-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/fixtures/external/node_modules/fake-c-package/package.json -------------------------------------------------------------------------------- /spec/fixtures/external/node_modules/fake-other-package/fake-other-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/fixtures/external/node_modules/fake-other-package/fake-other-bundle.js -------------------------------------------------------------------------------- /spec/fixtures/external/node_modules/fake-other-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/fixtures/external/node_modules/fake-other-package/package.json -------------------------------------------------------------------------------- /spec/fixtures/external/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/fixtures/external/package.json -------------------------------------------------------------------------------- /spec/fixtures/glob-a.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/glob-a.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/glob-b.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/glob-b.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/glob.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | font-size: 36px; 3 | } -------------------------------------------------------------------------------- /spec/fixtures/glob.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/index-no-inject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/fixtures/index-no-inject.html -------------------------------------------------------------------------------- /spec/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/fixtures/index.html -------------------------------------------------------------------------------- /spec/fixtures/other: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/option_validation.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/option_validation.spec.js -------------------------------------------------------------------------------- /spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/spec/support/jasmine.json -------------------------------------------------------------------------------- /typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/typings.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jharris4/html-webpack-tags-plugin/HEAD/yarn.lock --------------------------------------------------------------------------------