├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── codeql.yml │ └── release.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .lintstagedrc ├── .npmignore ├── .nvmrc ├── .prettierrc ├── .versionrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __tests__ ├── HtmlInlineScriptPlugin.test.ts └── cases │ ├── escape-script-end-tag │ ├── expected │ │ └── index.html │ ├── fixtures │ │ ├── index.html │ │ └── index.js │ └── webpack.config.ts │ ├── filename-with-special-characters │ ├── expected │ │ └── index.html │ ├── fixtures │ │ ├── index.html │ │ └── index.js │ └── webpack.config.ts │ ├── html-inside-subfolder │ ├── expected │ │ └── frontend │ │ │ └── index.html │ ├── fixtures │ │ ├── index.html │ │ └── index.js │ └── webpack.config.ts │ ├── ignore-htmls │ ├── expected │ │ ├── index.html │ │ ├── index.js │ │ ├── page2.html │ │ └── page2.js │ ├── fixtures │ │ ├── index.html │ │ ├── index.js │ │ ├── page2.html │ │ └── page2.js │ └── webpack.config.ts │ ├── ignore-scripts-and-htmls │ ├── expected │ │ ├── index.html │ │ ├── index.js │ │ ├── page2.html │ │ └── page2.js │ ├── fixtures │ │ ├── index.html │ │ ├── index.js │ │ ├── page2.html │ │ └── page2.js │ └── webpack.config.ts │ ├── ignore-scripts │ ├── expected │ │ ├── index.html │ │ └── non-inline.js │ ├── fixtures │ │ ├── index.html │ │ ├── index.js │ │ └── non-inline.js │ └── webpack.config.ts │ ├── js-with-import │ ├── expected │ │ └── index.html │ ├── fixtures │ │ ├── app.js │ │ ├── index.html │ │ └── index.js │ └── webpack.config.ts │ ├── multiple-instance │ ├── expected │ │ ├── index.html │ │ └── page2.html │ ├── fixtures │ │ ├── index.html │ │ ├── index.js │ │ ├── page2.html │ │ └── page2.js │ └── webpack.config.ts │ ├── preserveAsset │ ├── expected │ │ ├── index.html │ │ └── ui.js │ ├── fixtures │ │ ├── index.html │ │ └── index.js │ └── webpack.config.ts │ ├── simple │ ├── expected │ │ └── index.html │ ├── fixtures │ │ ├── index.html │ │ └── index.js │ └── webpack.config.ts │ └── web-worker │ ├── expected │ ├── index.html │ └── test.worker.js │ ├── fixtures │ ├── index.html │ ├── index.js │ └── worker.js │ └── webpack.config.ts ├── commitlint.config.js ├── docs └── publish.md ├── jest.config.js ├── package.json ├── src ├── HtmlInlineScriptPlugin.ts ├── constants.ts └── index.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn commitlint --edit 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn lint-staged -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14.20.0 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/.prettierrc -------------------------------------------------------------------------------- /.versionrc: -------------------------------------------------------------------------------- 1 | { 2 | "header": "# Changelog\n" 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/HtmlInlineScriptPlugin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/HtmlInlineScriptPlugin.test.ts -------------------------------------------------------------------------------- /__tests__/cases/escape-script-end-tag/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/escape-script-end-tag/expected/index.html -------------------------------------------------------------------------------- /__tests__/cases/escape-script-end-tag/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/escape-script-end-tag/fixtures/index.html -------------------------------------------------------------------------------- /__tests__/cases/escape-script-end-tag/fixtures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/escape-script-end-tag/fixtures/index.js -------------------------------------------------------------------------------- /__tests__/cases/escape-script-end-tag/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/escape-script-end-tag/webpack.config.ts -------------------------------------------------------------------------------- /__tests__/cases/filename-with-special-characters/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/filename-with-special-characters/expected/index.html -------------------------------------------------------------------------------- /__tests__/cases/filename-with-special-characters/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/filename-with-special-characters/fixtures/index.html -------------------------------------------------------------------------------- /__tests__/cases/filename-with-special-characters/fixtures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/filename-with-special-characters/fixtures/index.js -------------------------------------------------------------------------------- /__tests__/cases/filename-with-special-characters/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/filename-with-special-characters/webpack.config.ts -------------------------------------------------------------------------------- /__tests__/cases/html-inside-subfolder/expected/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/html-inside-subfolder/expected/frontend/index.html -------------------------------------------------------------------------------- /__tests__/cases/html-inside-subfolder/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/html-inside-subfolder/fixtures/index.html -------------------------------------------------------------------------------- /__tests__/cases/html-inside-subfolder/fixtures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/html-inside-subfolder/fixtures/index.js -------------------------------------------------------------------------------- /__tests__/cases/html-inside-subfolder/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/html-inside-subfolder/webpack.config.ts -------------------------------------------------------------------------------- /__tests__/cases/ignore-htmls/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/ignore-htmls/expected/index.html -------------------------------------------------------------------------------- /__tests__/cases/ignore-htmls/expected/index.js: -------------------------------------------------------------------------------- 1 | console.log("Hello world"); -------------------------------------------------------------------------------- /__tests__/cases/ignore-htmls/expected/page2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/ignore-htmls/expected/page2.html -------------------------------------------------------------------------------- /__tests__/cases/ignore-htmls/expected/page2.js: -------------------------------------------------------------------------------- 1 | console.log("Page 2"); -------------------------------------------------------------------------------- /__tests__/cases/ignore-htmls/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/ignore-htmls/fixtures/index.html -------------------------------------------------------------------------------- /__tests__/cases/ignore-htmls/fixtures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/ignore-htmls/fixtures/index.js -------------------------------------------------------------------------------- /__tests__/cases/ignore-htmls/fixtures/page2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/ignore-htmls/fixtures/page2.html -------------------------------------------------------------------------------- /__tests__/cases/ignore-htmls/fixtures/page2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/ignore-htmls/fixtures/page2.js -------------------------------------------------------------------------------- /__tests__/cases/ignore-htmls/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/ignore-htmls/webpack.config.ts -------------------------------------------------------------------------------- /__tests__/cases/ignore-scripts-and-htmls/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/ignore-scripts-and-htmls/expected/index.html -------------------------------------------------------------------------------- /__tests__/cases/ignore-scripts-and-htmls/expected/index.js: -------------------------------------------------------------------------------- 1 | console.log("Hello world"); -------------------------------------------------------------------------------- /__tests__/cases/ignore-scripts-and-htmls/expected/page2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/ignore-scripts-and-htmls/expected/page2.html -------------------------------------------------------------------------------- /__tests__/cases/ignore-scripts-and-htmls/expected/page2.js: -------------------------------------------------------------------------------- 1 | console.log("Page 2"); -------------------------------------------------------------------------------- /__tests__/cases/ignore-scripts-and-htmls/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/ignore-scripts-and-htmls/fixtures/index.html -------------------------------------------------------------------------------- /__tests__/cases/ignore-scripts-and-htmls/fixtures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/ignore-scripts-and-htmls/fixtures/index.js -------------------------------------------------------------------------------- /__tests__/cases/ignore-scripts-and-htmls/fixtures/page2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/ignore-scripts-and-htmls/fixtures/page2.html -------------------------------------------------------------------------------- /__tests__/cases/ignore-scripts-and-htmls/fixtures/page2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/ignore-scripts-and-htmls/fixtures/page2.js -------------------------------------------------------------------------------- /__tests__/cases/ignore-scripts-and-htmls/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/ignore-scripts-and-htmls/webpack.config.ts -------------------------------------------------------------------------------- /__tests__/cases/ignore-scripts/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/ignore-scripts/expected/index.html -------------------------------------------------------------------------------- /__tests__/cases/ignore-scripts/expected/non-inline.js: -------------------------------------------------------------------------------- 1 | console.log("This should not be inlined"); -------------------------------------------------------------------------------- /__tests__/cases/ignore-scripts/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/ignore-scripts/fixtures/index.html -------------------------------------------------------------------------------- /__tests__/cases/ignore-scripts/fixtures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/ignore-scripts/fixtures/index.js -------------------------------------------------------------------------------- /__tests__/cases/ignore-scripts/fixtures/non-inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/ignore-scripts/fixtures/non-inline.js -------------------------------------------------------------------------------- /__tests__/cases/ignore-scripts/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/ignore-scripts/webpack.config.ts -------------------------------------------------------------------------------- /__tests__/cases/js-with-import/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/js-with-import/expected/index.html -------------------------------------------------------------------------------- /__tests__/cases/js-with-import/fixtures/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/js-with-import/fixtures/app.js -------------------------------------------------------------------------------- /__tests__/cases/js-with-import/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/js-with-import/fixtures/index.html -------------------------------------------------------------------------------- /__tests__/cases/js-with-import/fixtures/index.js: -------------------------------------------------------------------------------- 1 | import './app'; 2 | -------------------------------------------------------------------------------- /__tests__/cases/js-with-import/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/js-with-import/webpack.config.ts -------------------------------------------------------------------------------- /__tests__/cases/multiple-instance/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/multiple-instance/expected/index.html -------------------------------------------------------------------------------- /__tests__/cases/multiple-instance/expected/page2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/multiple-instance/expected/page2.html -------------------------------------------------------------------------------- /__tests__/cases/multiple-instance/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/multiple-instance/fixtures/index.html -------------------------------------------------------------------------------- /__tests__/cases/multiple-instance/fixtures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/multiple-instance/fixtures/index.js -------------------------------------------------------------------------------- /__tests__/cases/multiple-instance/fixtures/page2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/multiple-instance/fixtures/page2.html -------------------------------------------------------------------------------- /__tests__/cases/multiple-instance/fixtures/page2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/multiple-instance/fixtures/page2.js -------------------------------------------------------------------------------- /__tests__/cases/multiple-instance/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/multiple-instance/webpack.config.ts -------------------------------------------------------------------------------- /__tests__/cases/preserveAsset/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/preserveAsset/expected/index.html -------------------------------------------------------------------------------- /__tests__/cases/preserveAsset/expected/ui.js: -------------------------------------------------------------------------------- 1 | console.log("Hello world"); -------------------------------------------------------------------------------- /__tests__/cases/preserveAsset/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/preserveAsset/fixtures/index.html -------------------------------------------------------------------------------- /__tests__/cases/preserveAsset/fixtures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/preserveAsset/fixtures/index.js -------------------------------------------------------------------------------- /__tests__/cases/preserveAsset/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/preserveAsset/webpack.config.ts -------------------------------------------------------------------------------- /__tests__/cases/simple/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/simple/expected/index.html -------------------------------------------------------------------------------- /__tests__/cases/simple/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/simple/fixtures/index.html -------------------------------------------------------------------------------- /__tests__/cases/simple/fixtures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/simple/fixtures/index.js -------------------------------------------------------------------------------- /__tests__/cases/simple/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/simple/webpack.config.ts -------------------------------------------------------------------------------- /__tests__/cases/web-worker/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/web-worker/expected/index.html -------------------------------------------------------------------------------- /__tests__/cases/web-worker/expected/test.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/web-worker/expected/test.worker.js -------------------------------------------------------------------------------- /__tests__/cases/web-worker/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/web-worker/fixtures/index.html -------------------------------------------------------------------------------- /__tests__/cases/web-worker/fixtures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/web-worker/fixtures/index.js -------------------------------------------------------------------------------- /__tests__/cases/web-worker/fixtures/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/web-worker/fixtures/worker.js -------------------------------------------------------------------------------- /__tests__/cases/web-worker/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/__tests__/cases/web-worker/webpack.config.ts -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'] 3 | }; 4 | -------------------------------------------------------------------------------- /docs/publish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/docs/publish.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/HtmlInlineScriptPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/src/HtmlInlineScriptPlugin.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icelam/html-inline-script-webpack-plugin/HEAD/yarn.lock --------------------------------------------------------------------------------