gitextract_5kqxl4xw/ ├── .cspell.json ├── .editorconfig ├── .eslintrc.js ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── issue_template.md │ ├── lock.yml │ ├── stale.yml │ └── workflows/ │ └── main.yml ├── .gitignore ├── .husky/ │ ├── commit-msg │ └── pre-commit ├── .mailmap ├── .node-version ├── .prettierignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── commitlint.config.js ├── default_index.ejs ├── docs/ │ └── template-option.md ├── examples/ │ ├── README.md │ ├── build-examples.js │ ├── chunk-optimization/ │ │ ├── dist/ │ │ │ └── webpack-5/ │ │ │ ├── 192.js │ │ │ ├── 461.js │ │ │ ├── entryA.html │ │ │ ├── entryA.js │ │ │ ├── entryB.html │ │ │ ├── entryB.js │ │ │ ├── entryC.html │ │ │ ├── libMath.js │ │ │ └── libText.js │ │ ├── entryA.js │ │ ├── entryB.js │ │ ├── lib-concat.js │ │ ├── lib-multiply.js │ │ ├── lib-sum.js │ │ ├── main.css │ │ ├── readme.md │ │ └── webpack.config.js │ ├── custom-insertion-position/ │ │ ├── dist/ │ │ │ └── webpack-5/ │ │ │ ├── bundle.js │ │ │ └── index.html │ │ ├── example.js │ │ ├── index.ejs │ │ ├── readme.md │ │ └── webpack.config.js │ ├── custom-template/ │ │ ├── dist/ │ │ │ └── webpack-5/ │ │ │ ├── bundle.js │ │ │ ├── index.html │ │ │ └── styles.css │ │ ├── example.js │ │ ├── main.css │ │ ├── partial.html │ │ ├── readme.md │ │ ├── template.html │ │ └── webpack.config.js │ ├── default/ │ │ ├── dist/ │ │ │ └── webpack-5/ │ │ │ ├── bundle.js │ │ │ └── index.html │ │ ├── example.js │ │ ├── main.css │ │ ├── readme.md │ │ └── webpack.config.js │ ├── favicon/ │ │ ├── dist/ │ │ │ └── webpack-5/ │ │ │ ├── bundle.js │ │ │ ├── favicon.html │ │ │ └── styles.css │ │ ├── example.js │ │ ├── main.css │ │ ├── template.html │ │ └── webpack.config.js │ ├── html-loader/ │ │ ├── dist/ │ │ │ └── webpack-5/ │ │ │ ├── about.html │ │ │ ├── bundle.js │ │ │ ├── index.html │ │ │ └── styles.css │ │ ├── example.js │ │ ├── main.css │ │ ├── template.html │ │ └── webpack.config.js │ ├── inline/ │ │ ├── dist/ │ │ │ └── webpack-5/ │ │ │ ├── bundle.js │ │ │ ├── index.html │ │ │ └── styles.css │ │ ├── example.js │ │ ├── main.css │ │ ├── readme.md │ │ ├── template.pug │ │ └── webpack.config.js │ ├── javascript/ │ │ ├── dist/ │ │ │ └── webpack-5/ │ │ │ ├── bundle.js │ │ │ ├── index.html │ │ │ └── styles.css │ │ ├── example.js │ │ ├── main.css │ │ ├── partial.html │ │ ├── readme.md │ │ ├── template.js │ │ ├── universal.js │ │ └── webpack.config.js │ ├── javascript-advanced/ │ │ ├── dist/ │ │ │ └── webpack-5/ │ │ │ ├── bundle.js │ │ │ ├── index.html │ │ │ └── styles.css │ │ ├── example.js │ │ ├── main.css │ │ ├── partial.html │ │ ├── readme.md │ │ ├── template.js │ │ ├── universal.js │ │ └── webpack.config.js │ ├── multi-page/ │ │ ├── dist/ │ │ │ └── webpack-5/ │ │ │ ├── first.html │ │ │ ├── first.js │ │ │ ├── second.html │ │ │ └── second.js │ │ ├── first.js │ │ ├── main.css │ │ ├── readme.md │ │ ├── second.js │ │ └── webpack.config.js │ ├── pug-loader/ │ │ ├── dist/ │ │ │ └── webpack-5/ │ │ │ ├── bundle.js │ │ │ ├── index.html │ │ │ └── styles.css │ │ ├── example.js │ │ ├── main.css │ │ ├── readme.md │ │ ├── template.pug │ │ ├── time.pug │ │ └── webpack.config.js │ ├── sort-manually/ │ │ ├── a.js │ │ ├── b.js │ │ ├── c.js │ │ ├── d.js │ │ ├── dist/ │ │ │ └── webpack-5/ │ │ │ ├── a.js │ │ │ ├── b.js │ │ │ ├── c.js │ │ │ ├── d.js │ │ │ ├── e.js │ │ │ ├── first-file.html │ │ │ ├── second-file.html │ │ │ └── styles.css │ │ ├── e.js │ │ ├── main.css │ │ ├── template.html │ │ └── webpack.config.js │ └── template-parameters/ │ ├── dist/ │ │ └── webpack-5/ │ │ ├── bundle.js │ │ └── index.html │ ├── example.js │ ├── index.ejs │ ├── readme.md │ └── webpack.config.js ├── flow.puml ├── index.js ├── lib/ │ ├── cached-child-compiler.js │ ├── child-compiler.js │ ├── chunksorter.js │ ├── errors.js │ ├── hooks.js │ ├── html-tags.js │ └── loader.js ├── lint-staged.config.js ├── logs ├── migration.md ├── package.json ├── spec/ │ ├── basic.spec.js │ ├── caching.spec.js │ ├── example.spec.js │ ├── fixtures/ │ │ ├── async.js │ │ ├── common.js │ │ ├── empty.html │ │ ├── empty_html.html │ │ ├── html-template-with-image.html │ │ ├── index.js │ │ ├── interpolation.html │ │ ├── invalid.html │ │ ├── logo.html │ │ ├── main.css │ │ ├── plain.html │ │ ├── spaced_plain.html │ │ ├── src/ │ │ │ └── index.ejs │ │ ├── template-partial.hbs │ │ ├── template.ejs │ │ ├── template.hbs │ │ ├── template.pug │ │ ├── templateParam.cjs │ │ ├── templateParam.js │ │ ├── test.html │ │ ├── theme.js │ │ ├── util.js │ │ └── webpackconfig.html │ └── hot.spec.js ├── tsconfig.json └── typings.d.ts