├── .npmignore ├── LICENSE.md ├── README.md ├── example ├── .babelrc ├── .gitignore ├── README.md ├── package.json ├── src │ ├── components │ │ └── App.tsx │ └── index.tsx ├── tsconfig.json ├── tsconfig.legacy.json ├── webpack.config.js ├── webpack │ ├── base.js │ ├── dev.js │ ├── legacyConfig.js │ ├── multi.js │ ├── prod.js │ └── prod.legacy.js └── yarn.lock ├── index.js ├── package.json └── template.ejs /.npmignore: -------------------------------------------------------------------------------- 1 | example/ -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firsttris/html-webpack-multi-build-plugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firsttris/html-webpack-multi-build-plugin/HEAD/README.md -------------------------------------------------------------------------------- /example/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"] 3 | } -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firsttris/html-webpack-multi-build-plugin/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- 1 | # webpack-multi-build-example -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firsttris/html-webpack-multi-build-plugin/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firsttris/html-webpack-multi-build-plugin/HEAD/example/src/components/App.tsx -------------------------------------------------------------------------------- /example/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firsttris/html-webpack-multi-build-plugin/HEAD/example/src/index.tsx -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firsttris/html-webpack-multi-build-plugin/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/tsconfig.legacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firsttris/html-webpack-multi-build-plugin/HEAD/example/tsconfig.legacy.json -------------------------------------------------------------------------------- /example/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firsttris/html-webpack-multi-build-plugin/HEAD/example/webpack.config.js -------------------------------------------------------------------------------- /example/webpack/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firsttris/html-webpack-multi-build-plugin/HEAD/example/webpack/base.js -------------------------------------------------------------------------------- /example/webpack/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firsttris/html-webpack-multi-build-plugin/HEAD/example/webpack/dev.js -------------------------------------------------------------------------------- /example/webpack/legacyConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firsttris/html-webpack-multi-build-plugin/HEAD/example/webpack/legacyConfig.js -------------------------------------------------------------------------------- /example/webpack/multi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firsttris/html-webpack-multi-build-plugin/HEAD/example/webpack/multi.js -------------------------------------------------------------------------------- /example/webpack/prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firsttris/html-webpack-multi-build-plugin/HEAD/example/webpack/prod.js -------------------------------------------------------------------------------- /example/webpack/prod.legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firsttris/html-webpack-multi-build-plugin/HEAD/example/webpack/prod.legacy.js -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firsttris/html-webpack-multi-build-plugin/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firsttris/html-webpack-multi-build-plugin/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firsttris/html-webpack-multi-build-plugin/HEAD/package.json -------------------------------------------------------------------------------- /template.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firsttris/html-webpack-multi-build-plugin/HEAD/template.ejs --------------------------------------------------------------------------------