├── .codecov.yml ├── .editorconfig ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── test.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── README.npm.md ├── SECURITY.md ├── package.json ├── package.npm.json ├── rollup.config.mjs ├── src ├── index.d.ts ├── index.js └── utils.js ├── test ├── .babelrc ├── .editorconfig ├── cases │ ├── css-entry-only │ │ ├── expected │ │ │ ├── assets │ │ │ │ └── css │ │ │ │ │ └── style.css │ │ │ └── style.css │ │ ├── src │ │ │ └── style.css │ │ └── webpack.config.js │ ├── css-entry-with-ignored-hmr │ │ ├── expected │ │ │ ├── script.js │ │ │ └── style.css │ │ ├── src │ │ │ ├── script.js │ │ │ └── style.css │ │ └── webpack.config.js │ ├── css-entry-with-query │ │ ├── expected │ │ │ ├── script.js │ │ │ └── style.css │ │ ├── src │ │ │ ├── script.js │ │ │ └── style.css │ │ └── webpack.config.js │ ├── css-import-dynamic-custom │ │ ├── expected │ │ │ ├── desktop.css │ │ │ ├── main.js │ │ │ ├── mobile.css │ │ │ └── style.css │ │ ├── src │ │ │ ├── desktop.css │ │ │ ├── main.js │ │ │ ├── mobile.css │ │ │ └── style.css │ │ └── webpack.config.js │ ├── css-import-dynamic │ │ ├── expected │ │ │ ├── main.css │ │ │ ├── main.js │ │ │ └── style.css │ │ ├── src │ │ │ ├── main.js │ │ │ ├── style.css │ │ │ └── vendor.css │ │ └── webpack.config.js │ ├── css-import │ │ ├── expected │ │ │ ├── main.css │ │ │ ├── main.js │ │ │ └── style.css │ │ ├── src │ │ │ ├── main.js │ │ │ ├── style.css │ │ │ └── vendor.css │ │ └── webpack.config.js │ ├── exception-option-stage-invalid │ │ ├── expected │ │ │ ├── assets.json │ │ │ └── style.css │ │ ├── src │ │ │ └── style.css │ │ └── webpack.config.js │ ├── multi-configuration │ │ ├── expected │ │ │ ├── scriptA.js │ │ │ ├── scriptB.js │ │ │ ├── styleA.css │ │ │ └── styleB.css │ │ ├── src │ │ │ ├── foo.js │ │ │ ├── script.js │ │ │ └── style.css │ │ └── webpack.config.js │ ├── multi-js-entry-css-entry-extensions-do-not-match │ │ ├── expected │ │ │ ├── script.js │ │ │ ├── style.css │ │ │ └── style.js │ │ ├── src │ │ │ ├── script.js │ │ │ └── style.css │ │ └── webpack.config.js │ ├── multi-js-entry-css-entry-mjs-output-css-output │ │ ├── expected │ │ │ ├── script.mjs │ │ │ └── style.css │ │ ├── src │ │ │ ├── script.js │ │ │ └── style.css │ │ └── webpack.config.js │ ├── multi-js-entry-css-entry │ │ ├── expected │ │ │ ├── script.js │ │ │ └── style.css │ │ ├── src │ │ │ ├── script.js │ │ │ └── style.css │ │ └── webpack.config.js │ ├── multi-mjs-entry-css-entry │ │ ├── expected │ │ │ ├── script.mjs │ │ │ └── style.css │ │ ├── src │ │ │ ├── script.mjs │ │ │ └── style.css │ │ └── webpack.config.js │ ├── multi-page+styles │ │ ├── expected │ │ │ ├── about.js │ │ │ ├── apage.js │ │ │ ├── bpage-other.js │ │ │ └── styles.css │ │ ├── src │ │ │ ├── about.html │ │ │ ├── apage.css │ │ │ ├── apage.js │ │ │ ├── bpage.css │ │ │ ├── bpage.js │ │ │ └── common.css │ │ └── webpack.config.js │ ├── option-extension-array │ │ ├── expected │ │ │ ├── script.js │ │ │ ├── style.css │ │ │ └── style.js │ │ ├── src │ │ │ ├── script.js │ │ │ └── style.css │ │ └── webpack.config.js │ ├── option-extension-regexp │ │ ├── expected │ │ │ ├── script.js │ │ │ ├── style.css │ │ │ └── style.js │ │ ├── src │ │ │ ├── script.js │ │ │ └── style.css │ │ └── webpack.config.js │ ├── option-ignore-array │ │ ├── expected │ │ │ ├── script.js │ │ │ └── style.css │ │ ├── src │ │ │ ├── script.js │ │ │ └── style.css │ │ └── webpack.config.js │ ├── option-ignore-string │ │ ├── expected │ │ │ ├── script.js │ │ │ └── style.css │ │ ├── src │ │ │ ├── script.js │ │ │ └── style.css │ │ └── webpack.config.js │ ├── option-remove │ │ ├── expected │ │ │ ├── style.css │ │ │ ├── style.rem.css │ │ │ └── style.rem.js │ │ ├── src │ │ │ └── style.css │ │ └── webpack.config.js │ ├── plugin-webpack-manifest │ │ ├── expected │ │ │ ├── assets.json │ │ │ └── style.css │ │ ├── src │ │ │ └── style.css │ │ └── webpack.config.js │ ├── plugin-wordpress-dependency │ │ ├── expected │ │ │ ├── css │ │ │ │ ├── main.asset.php │ │ │ │ ├── main.css │ │ │ │ └── main.css.map │ │ │ └── js │ │ │ │ ├── main.asset.php │ │ │ │ ├── main.js │ │ │ │ └── main.js.map │ │ ├── src │ │ │ ├── js │ │ │ │ └── main.js │ │ │ └── sass │ │ │ │ └── main.scss │ │ └── webpack.config.js │ ├── single-js+css-entry-mjs+css-output │ │ ├── expected │ │ │ ├── main.css │ │ │ └── main.mjs │ │ ├── src │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ └── styles.css │ │ └── webpack.config.js │ ├── single-js+css-entry │ │ ├── expected │ │ │ ├── main.css │ │ │ └── main.js │ │ ├── src │ │ │ ├── index.css │ │ │ └── index.js │ │ └── webpack.config.js │ ├── single-js-entry-without-ext │ │ ├── expected │ │ │ └── main.js │ │ ├── src │ │ │ └── index.js │ │ └── webpack.config.js │ ├── single-mjs+css-entry │ │ ├── expected │ │ │ ├── main.css │ │ │ └── main.mjs │ │ ├── src │ │ │ ├── index.css │ │ │ └── index.mjs │ │ └── webpack.config.js │ ├── single-mjs-entry │ │ ├── expected │ │ │ └── main.mjs │ │ ├── src │ │ │ └── index.mjs │ │ └── webpack.config.js │ ├── vendor+multi-js-entry-css-entry │ │ ├── expected │ │ │ ├── script.js │ │ │ ├── style.css │ │ │ └── vendor.js │ │ ├── src │ │ │ ├── script.js │ │ │ └── style.css │ │ └── webpack.config.js │ └── webpack-concatenate-modules │ │ ├── expected │ │ ├── script.js │ │ └── style.css │ │ ├── src │ │ ├── script.js │ │ └── style.css │ │ └── webpack.config.js ├── config.js ├── integration.test.js ├── jest.config.js ├── manual │ ├── issue-webpack-concatenateModules │ │ ├── .babelrc.js │ │ ├── README.md │ │ ├── build │ │ │ └── assets │ │ │ │ ├── react-app.js │ │ │ │ └── react-app.js.LICENSE.txt │ │ ├── package.json │ │ ├── src │ │ │ └── react-app.js │ │ ├── webpack-build-dev.sh │ │ ├── webpack-build.sh │ │ └── webpack.config.js │ └── issue-webpack-react-components │ │ ├── .babelrc.json │ │ ├── README.md │ │ ├── build │ │ └── assets │ │ │ ├── react-app.js │ │ │ └── react-app.js.LICENSE.txt │ │ ├── package.json │ │ ├── src │ │ └── react-app.js │ │ ├── webpack-build-dev.sh │ │ ├── webpack-build.sh │ │ └── webpack.config.js ├── utils │ ├── FileSystem │ │ ├── Module │ │ │ ├── moduleLoader.js │ │ │ ├── nocacheLoader.js │ │ │ └── register.js │ │ ├── Utils.js │ │ └── loadModule.js │ ├── file.js │ ├── helpers.js │ └── webpack.js ├── utils_old │ ├── file.js │ ├── helpers.js │ └── webpack.js └── webpack.common.js └── webpack-remove-empty-scripts-1.1.1.tgz /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /test 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/README.md -------------------------------------------------------------------------------- /README.npm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/README.npm.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/SECURITY.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/package.json -------------------------------------------------------------------------------- /package.npm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/package.npm.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/src/utils.js -------------------------------------------------------------------------------- /test/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/.babelrc -------------------------------------------------------------------------------- /test/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/.editorconfig -------------------------------------------------------------------------------- /test/cases/css-entry-only/expected/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-entry-only/expected/assets/css/style.css -------------------------------------------------------------------------------- /test/cases/css-entry-only/expected/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-entry-only/expected/style.css -------------------------------------------------------------------------------- /test/cases/css-entry-only/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-entry-only/src/style.css -------------------------------------------------------------------------------- /test/cases/css-entry-only/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-entry-only/webpack.config.js -------------------------------------------------------------------------------- /test/cases/css-entry-with-ignored-hmr/expected/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-entry-with-ignored-hmr/expected/script.js -------------------------------------------------------------------------------- /test/cases/css-entry-with-ignored-hmr/expected/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-entry-with-ignored-hmr/expected/style.css -------------------------------------------------------------------------------- /test/cases/css-entry-with-ignored-hmr/src/script.js: -------------------------------------------------------------------------------- 1 | console.log('hello'); -------------------------------------------------------------------------------- /test/cases/css-entry-with-ignored-hmr/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-entry-with-ignored-hmr/src/style.css -------------------------------------------------------------------------------- /test/cases/css-entry-with-ignored-hmr/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-entry-with-ignored-hmr/webpack.config.js -------------------------------------------------------------------------------- /test/cases/css-entry-with-query/expected/script.js: -------------------------------------------------------------------------------- 1 | console.log("hello"); -------------------------------------------------------------------------------- /test/cases/css-entry-with-query/expected/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-entry-with-query/expected/style.css -------------------------------------------------------------------------------- /test/cases/css-entry-with-query/src/script.js: -------------------------------------------------------------------------------- 1 | console.log('hello'); -------------------------------------------------------------------------------- /test/cases/css-entry-with-query/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-entry-with-query/src/style.css -------------------------------------------------------------------------------- /test/cases/css-entry-with-query/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-entry-with-query/webpack.config.js -------------------------------------------------------------------------------- /test/cases/css-import-dynamic-custom/expected/desktop.css: -------------------------------------------------------------------------------- 1 | .desktop { 2 | color: green; 3 | } -------------------------------------------------------------------------------- /test/cases/css-import-dynamic-custom/expected/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-import-dynamic-custom/expected/main.js -------------------------------------------------------------------------------- /test/cases/css-import-dynamic-custom/expected/mobile.css: -------------------------------------------------------------------------------- 1 | .mobile { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /test/cases/css-import-dynamic-custom/expected/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-import-dynamic-custom/expected/style.css -------------------------------------------------------------------------------- /test/cases/css-import-dynamic-custom/src/desktop.css: -------------------------------------------------------------------------------- 1 | .desktop { 2 | color: green; 3 | } -------------------------------------------------------------------------------- /test/cases/css-import-dynamic-custom/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-import-dynamic-custom/src/main.js -------------------------------------------------------------------------------- /test/cases/css-import-dynamic-custom/src/mobile.css: -------------------------------------------------------------------------------- 1 | .mobile { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /test/cases/css-import-dynamic-custom/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-import-dynamic-custom/src/style.css -------------------------------------------------------------------------------- /test/cases/css-import-dynamic-custom/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-import-dynamic-custom/webpack.config.js -------------------------------------------------------------------------------- /test/cases/css-import-dynamic/expected/main.css: -------------------------------------------------------------------------------- 1 | .vendor { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/cases/css-import-dynamic/expected/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-import-dynamic/expected/main.js -------------------------------------------------------------------------------- /test/cases/css-import-dynamic/expected/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-import-dynamic/expected/style.css -------------------------------------------------------------------------------- /test/cases/css-import-dynamic/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-import-dynamic/src/main.js -------------------------------------------------------------------------------- /test/cases/css-import-dynamic/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-import-dynamic/src/style.css -------------------------------------------------------------------------------- /test/cases/css-import-dynamic/src/vendor.css: -------------------------------------------------------------------------------- 1 | .vendor { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /test/cases/css-import-dynamic/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-import-dynamic/webpack.config.js -------------------------------------------------------------------------------- /test/cases/css-import/expected/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-import/expected/main.css -------------------------------------------------------------------------------- /test/cases/css-import/expected/main.js: -------------------------------------------------------------------------------- 1 | (()=>{"use strict";console.log("main")})(); -------------------------------------------------------------------------------- /test/cases/css-import/expected/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-import/expected/style.css -------------------------------------------------------------------------------- /test/cases/css-import/src/main.js: -------------------------------------------------------------------------------- 1 | import './vendor.css'; 2 | console.log('main'); -------------------------------------------------------------------------------- /test/cases/css-import/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-import/src/style.css -------------------------------------------------------------------------------- /test/cases/css-import/src/vendor.css: -------------------------------------------------------------------------------- 1 | .vendor { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /test/cases/css-import/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/css-import/webpack.config.js -------------------------------------------------------------------------------- /test/cases/exception-option-stage-invalid/expected/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/exception-option-stage-invalid/expected/assets.json -------------------------------------------------------------------------------- /test/cases/exception-option-stage-invalid/expected/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/cases/exception-option-stage-invalid/src/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /test/cases/exception-option-stage-invalid/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/exception-option-stage-invalid/webpack.config.js -------------------------------------------------------------------------------- /test/cases/multi-configuration/expected/scriptA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/multi-configuration/expected/scriptA.js -------------------------------------------------------------------------------- /test/cases/multi-configuration/expected/scriptB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/multi-configuration/expected/scriptB.js -------------------------------------------------------------------------------- /test/cases/multi-configuration/expected/styleA.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/cases/multi-configuration/expected/styleB.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/cases/multi-configuration/src/foo.js: -------------------------------------------------------------------------------- 1 | module.exports = 'foo'; -------------------------------------------------------------------------------- /test/cases/multi-configuration/src/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/multi-configuration/src/script.js -------------------------------------------------------------------------------- /test/cases/multi-configuration/src/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /test/cases/multi-configuration/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/multi-configuration/webpack.config.js -------------------------------------------------------------------------------- /test/cases/multi-js-entry-css-entry-extensions-do-not-match/expected/script.js: -------------------------------------------------------------------------------- 1 | console.log("hello"); -------------------------------------------------------------------------------- /test/cases/multi-js-entry-css-entry-extensions-do-not-match/expected/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/multi-js-entry-css-entry-extensions-do-not-match/expected/style.css -------------------------------------------------------------------------------- /test/cases/multi-js-entry-css-entry-extensions-do-not-match/expected/style.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/cases/multi-js-entry-css-entry-extensions-do-not-match/src/script.js: -------------------------------------------------------------------------------- 1 | console.log('hello'); -------------------------------------------------------------------------------- /test/cases/multi-js-entry-css-entry-extensions-do-not-match/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/multi-js-entry-css-entry-extensions-do-not-match/src/style.css -------------------------------------------------------------------------------- /test/cases/multi-js-entry-css-entry-extensions-do-not-match/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/multi-js-entry-css-entry-extensions-do-not-match/webpack.config.js -------------------------------------------------------------------------------- /test/cases/multi-js-entry-css-entry-mjs-output-css-output/expected/script.mjs: -------------------------------------------------------------------------------- 1 | console.log("hello"); -------------------------------------------------------------------------------- /test/cases/multi-js-entry-css-entry-mjs-output-css-output/expected/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/multi-js-entry-css-entry-mjs-output-css-output/expected/style.css -------------------------------------------------------------------------------- /test/cases/multi-js-entry-css-entry-mjs-output-css-output/src/script.js: -------------------------------------------------------------------------------- 1 | console.log('hello'); -------------------------------------------------------------------------------- /test/cases/multi-js-entry-css-entry-mjs-output-css-output/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/multi-js-entry-css-entry-mjs-output-css-output/src/style.css -------------------------------------------------------------------------------- /test/cases/multi-js-entry-css-entry-mjs-output-css-output/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/multi-js-entry-css-entry-mjs-output-css-output/webpack.config.js -------------------------------------------------------------------------------- /test/cases/multi-js-entry-css-entry/expected/script.js: -------------------------------------------------------------------------------- 1 | console.log("hello"); -------------------------------------------------------------------------------- /test/cases/multi-js-entry-css-entry/expected/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/multi-js-entry-css-entry/expected/style.css -------------------------------------------------------------------------------- /test/cases/multi-js-entry-css-entry/src/script.js: -------------------------------------------------------------------------------- 1 | console.log('hello'); -------------------------------------------------------------------------------- /test/cases/multi-js-entry-css-entry/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/multi-js-entry-css-entry/src/style.css -------------------------------------------------------------------------------- /test/cases/multi-js-entry-css-entry/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/multi-js-entry-css-entry/webpack.config.js -------------------------------------------------------------------------------- /test/cases/multi-mjs-entry-css-entry/expected/script.mjs: -------------------------------------------------------------------------------- 1 | (()=>{"use strict";console.log("hello")})(); -------------------------------------------------------------------------------- /test/cases/multi-mjs-entry-css-entry/expected/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/multi-mjs-entry-css-entry/expected/style.css -------------------------------------------------------------------------------- /test/cases/multi-mjs-entry-css-entry/src/script.mjs: -------------------------------------------------------------------------------- 1 | console.log("hello"); 2 | -------------------------------------------------------------------------------- /test/cases/multi-mjs-entry-css-entry/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/multi-mjs-entry-css-entry/src/style.css -------------------------------------------------------------------------------- /test/cases/multi-mjs-entry-css-entry/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/multi-mjs-entry-css-entry/webpack.config.js -------------------------------------------------------------------------------- /test/cases/multi-page+styles/expected/about.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/cases/multi-page+styles/expected/apage.js: -------------------------------------------------------------------------------- 1 | console.log("a-page"); -------------------------------------------------------------------------------- /test/cases/multi-page+styles/expected/bpage-other.js: -------------------------------------------------------------------------------- 1 | console.log("b-page"); -------------------------------------------------------------------------------- /test/cases/multi-page+styles/expected/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/multi-page+styles/expected/styles.css -------------------------------------------------------------------------------- /test/cases/multi-page+styles/src/about.html: -------------------------------------------------------------------------------- 1 |

about

-------------------------------------------------------------------------------- /test/cases/multi-page+styles/src/apage.css: -------------------------------------------------------------------------------- 1 | #a-page { 2 | background-color: "blue"; 3 | } 4 | -------------------------------------------------------------------------------- /test/cases/multi-page+styles/src/apage.js: -------------------------------------------------------------------------------- 1 | console.log('a-page'); -------------------------------------------------------------------------------- /test/cases/multi-page+styles/src/bpage.css: -------------------------------------------------------------------------------- 1 | #b-page { 2 | background-color: "red"; 3 | } 4 | -------------------------------------------------------------------------------- /test/cases/multi-page+styles/src/bpage.js: -------------------------------------------------------------------------------- 1 | console.log('b-page'); -------------------------------------------------------------------------------- /test/cases/multi-page+styles/src/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/multi-page+styles/src/common.css -------------------------------------------------------------------------------- /test/cases/multi-page+styles/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/multi-page+styles/webpack.config.js -------------------------------------------------------------------------------- /test/cases/option-extension-array/expected/script.js: -------------------------------------------------------------------------------- 1 | console.log("hello"); -------------------------------------------------------------------------------- /test/cases/option-extension-array/expected/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/option-extension-array/expected/style.css -------------------------------------------------------------------------------- /test/cases/option-extension-array/expected/style.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/cases/option-extension-array/src/script.js: -------------------------------------------------------------------------------- 1 | console.log('hello'); -------------------------------------------------------------------------------- /test/cases/option-extension-array/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/option-extension-array/src/style.css -------------------------------------------------------------------------------- /test/cases/option-extension-array/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/option-extension-array/webpack.config.js -------------------------------------------------------------------------------- /test/cases/option-extension-regexp/expected/script.js: -------------------------------------------------------------------------------- 1 | console.log("hello"); -------------------------------------------------------------------------------- /test/cases/option-extension-regexp/expected/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/option-extension-regexp/expected/style.css -------------------------------------------------------------------------------- /test/cases/option-extension-regexp/expected/style.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/cases/option-extension-regexp/src/script.js: -------------------------------------------------------------------------------- 1 | console.log('hello'); -------------------------------------------------------------------------------- /test/cases/option-extension-regexp/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/option-extension-regexp/src/style.css -------------------------------------------------------------------------------- /test/cases/option-extension-regexp/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/option-extension-regexp/webpack.config.js -------------------------------------------------------------------------------- /test/cases/option-ignore-array/expected/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/option-ignore-array/expected/script.js -------------------------------------------------------------------------------- /test/cases/option-ignore-array/expected/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/option-ignore-array/expected/style.css -------------------------------------------------------------------------------- /test/cases/option-ignore-array/src/script.js: -------------------------------------------------------------------------------- 1 | console.log('hello'); -------------------------------------------------------------------------------- /test/cases/option-ignore-array/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/option-ignore-array/src/style.css -------------------------------------------------------------------------------- /test/cases/option-ignore-array/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/option-ignore-array/webpack.config.js -------------------------------------------------------------------------------- /test/cases/option-ignore-string/expected/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/option-ignore-string/expected/script.js -------------------------------------------------------------------------------- /test/cases/option-ignore-string/expected/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/option-ignore-string/expected/style.css -------------------------------------------------------------------------------- /test/cases/option-ignore-string/src/script.js: -------------------------------------------------------------------------------- 1 | console.log('hello'); -------------------------------------------------------------------------------- /test/cases/option-ignore-string/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/option-ignore-string/src/style.css -------------------------------------------------------------------------------- /test/cases/option-ignore-string/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/option-ignore-string/webpack.config.js -------------------------------------------------------------------------------- /test/cases/option-remove/expected/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/cases/option-remove/expected/style.rem.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/cases/option-remove/expected/style.rem.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/cases/option-remove/src/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /test/cases/option-remove/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/option-remove/webpack.config.js -------------------------------------------------------------------------------- /test/cases/plugin-webpack-manifest/expected/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/plugin-webpack-manifest/expected/assets.json -------------------------------------------------------------------------------- /test/cases/plugin-webpack-manifest/expected/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/cases/plugin-webpack-manifest/src/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /test/cases/plugin-webpack-manifest/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/plugin-webpack-manifest/webpack.config.js -------------------------------------------------------------------------------- /test/cases/plugin-wordpress-dependency/expected/css/main.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/plugin-wordpress-dependency/expected/css/main.asset.php -------------------------------------------------------------------------------- /test/cases/plugin-wordpress-dependency/expected/css/main.css: -------------------------------------------------------------------------------- 1 | h1{color:red} 2 | 3 | /*# sourceMappingURL=main.css.map*/ -------------------------------------------------------------------------------- /test/cases/plugin-wordpress-dependency/expected/css/main.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/plugin-wordpress-dependency/expected/css/main.css.map -------------------------------------------------------------------------------- /test/cases/plugin-wordpress-dependency/expected/js/main.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/plugin-wordpress-dependency/expected/js/main.asset.php -------------------------------------------------------------------------------- /test/cases/plugin-wordpress-dependency/expected/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/plugin-wordpress-dependency/expected/js/main.js -------------------------------------------------------------------------------- /test/cases/plugin-wordpress-dependency/expected/js/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/plugin-wordpress-dependency/expected/js/main.js.map -------------------------------------------------------------------------------- /test/cases/plugin-wordpress-dependency/src/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/plugin-wordpress-dependency/src/js/main.js -------------------------------------------------------------------------------- /test/cases/plugin-wordpress-dependency/src/sass/main.scss: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /test/cases/plugin-wordpress-dependency/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/plugin-wordpress-dependency/webpack.config.js -------------------------------------------------------------------------------- /test/cases/single-js+css-entry-mjs+css-output/expected/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/single-js+css-entry-mjs+css-output/expected/main.css -------------------------------------------------------------------------------- /test/cases/single-js+css-entry-mjs+css-output/expected/main.mjs: -------------------------------------------------------------------------------- 1 | console.log("hello"); -------------------------------------------------------------------------------- /test/cases/single-js+css-entry-mjs+css-output/src/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /test/cases/single-js+css-entry-mjs+css-output/src/index.js: -------------------------------------------------------------------------------- 1 | console.log('hello'); -------------------------------------------------------------------------------- /test/cases/single-js+css-entry-mjs+css-output/src/styles.css: -------------------------------------------------------------------------------- 1 | h2 { 2 | color: green; 3 | } -------------------------------------------------------------------------------- /test/cases/single-js+css-entry-mjs+css-output/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/single-js+css-entry-mjs+css-output/webpack.config.js -------------------------------------------------------------------------------- /test/cases/single-js+css-entry/expected/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/single-js+css-entry/expected/main.css -------------------------------------------------------------------------------- /test/cases/single-js+css-entry/expected/main.js: -------------------------------------------------------------------------------- 1 | console.log("hello"); -------------------------------------------------------------------------------- /test/cases/single-js+css-entry/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/single-js+css-entry/src/index.css -------------------------------------------------------------------------------- /test/cases/single-js+css-entry/src/index.js: -------------------------------------------------------------------------------- 1 | console.log('hello'); -------------------------------------------------------------------------------- /test/cases/single-js+css-entry/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/single-js+css-entry/webpack.config.js -------------------------------------------------------------------------------- /test/cases/single-js-entry-without-ext/expected/main.js: -------------------------------------------------------------------------------- 1 | console.log("hello"); -------------------------------------------------------------------------------- /test/cases/single-js-entry-without-ext/src/index.js: -------------------------------------------------------------------------------- 1 | console.log('hello'); -------------------------------------------------------------------------------- /test/cases/single-js-entry-without-ext/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/single-js-entry-without-ext/webpack.config.js -------------------------------------------------------------------------------- /test/cases/single-mjs+css-entry/expected/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/single-mjs+css-entry/expected/main.css -------------------------------------------------------------------------------- /test/cases/single-mjs+css-entry/expected/main.mjs: -------------------------------------------------------------------------------- 1 | (()=>{"use strict";console.log("hello")})(); -------------------------------------------------------------------------------- /test/cases/single-mjs+css-entry/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/single-mjs+css-entry/src/index.css -------------------------------------------------------------------------------- /test/cases/single-mjs+css-entry/src/index.mjs: -------------------------------------------------------------------------------- 1 | console.log("hello"); 2 | -------------------------------------------------------------------------------- /test/cases/single-mjs+css-entry/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/single-mjs+css-entry/webpack.config.js -------------------------------------------------------------------------------- /test/cases/single-mjs-entry/expected/main.mjs: -------------------------------------------------------------------------------- 1 | (()=>{"use strict";console.log("hello")})(); -------------------------------------------------------------------------------- /test/cases/single-mjs-entry/src/index.mjs: -------------------------------------------------------------------------------- 1 | console.log("hello"); 2 | -------------------------------------------------------------------------------- /test/cases/single-mjs-entry/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/single-mjs-entry/webpack.config.js -------------------------------------------------------------------------------- /test/cases/vendor+multi-js-entry-css-entry/expected/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/vendor+multi-js-entry-css-entry/expected/script.js -------------------------------------------------------------------------------- /test/cases/vendor+multi-js-entry-css-entry/expected/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/cases/vendor+multi-js-entry-css-entry/expected/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/vendor+multi-js-entry-css-entry/expected/vendor.js -------------------------------------------------------------------------------- /test/cases/vendor+multi-js-entry-css-entry/src/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/vendor+multi-js-entry-css-entry/src/script.js -------------------------------------------------------------------------------- /test/cases/vendor+multi-js-entry-css-entry/src/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /test/cases/vendor+multi-js-entry-css-entry/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/vendor+multi-js-entry-css-entry/webpack.config.js -------------------------------------------------------------------------------- /test/cases/webpack-concatenate-modules/expected/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/webpack-concatenate-modules/expected/script.js -------------------------------------------------------------------------------- /test/cases/webpack-concatenate-modules/expected/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/webpack-concatenate-modules/expected/style.css -------------------------------------------------------------------------------- /test/cases/webpack-concatenate-modules/src/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/webpack-concatenate-modules/src/script.js -------------------------------------------------------------------------------- /test/cases/webpack-concatenate-modules/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/webpack-concatenate-modules/src/style.css -------------------------------------------------------------------------------- /test/cases/webpack-concatenate-modules/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/cases/webpack-concatenate-modules/webpack.config.js -------------------------------------------------------------------------------- /test/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/config.js -------------------------------------------------------------------------------- /test/integration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/integration.test.js -------------------------------------------------------------------------------- /test/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/jest.config.js -------------------------------------------------------------------------------- /test/manual/issue-webpack-concatenateModules/.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/manual/issue-webpack-concatenateModules/.babelrc.js -------------------------------------------------------------------------------- /test/manual/issue-webpack-concatenateModules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/manual/issue-webpack-concatenateModules/README.md -------------------------------------------------------------------------------- /test/manual/issue-webpack-concatenateModules/build/assets/react-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/manual/issue-webpack-concatenateModules/build/assets/react-app.js -------------------------------------------------------------------------------- /test/manual/issue-webpack-concatenateModules/build/assets/react-app.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/manual/issue-webpack-concatenateModules/build/assets/react-app.js.LICENSE.txt -------------------------------------------------------------------------------- /test/manual/issue-webpack-concatenateModules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/manual/issue-webpack-concatenateModules/package.json -------------------------------------------------------------------------------- /test/manual/issue-webpack-concatenateModules/src/react-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/manual/issue-webpack-concatenateModules/src/react-app.js -------------------------------------------------------------------------------- /test/manual/issue-webpack-concatenateModules/webpack-build-dev.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | npm run build:dev -------------------------------------------------------------------------------- /test/manual/issue-webpack-concatenateModules/webpack-build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | npm run build -------------------------------------------------------------------------------- /test/manual/issue-webpack-concatenateModules/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/manual/issue-webpack-concatenateModules/webpack.config.js -------------------------------------------------------------------------------- /test/manual/issue-webpack-react-components/.babelrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/manual/issue-webpack-react-components/.babelrc.json -------------------------------------------------------------------------------- /test/manual/issue-webpack-react-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/manual/issue-webpack-react-components/README.md -------------------------------------------------------------------------------- /test/manual/issue-webpack-react-components/build/assets/react-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/manual/issue-webpack-react-components/build/assets/react-app.js -------------------------------------------------------------------------------- /test/manual/issue-webpack-react-components/build/assets/react-app.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/manual/issue-webpack-react-components/build/assets/react-app.js.LICENSE.txt -------------------------------------------------------------------------------- /test/manual/issue-webpack-react-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/manual/issue-webpack-react-components/package.json -------------------------------------------------------------------------------- /test/manual/issue-webpack-react-components/src/react-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/manual/issue-webpack-react-components/src/react-app.js -------------------------------------------------------------------------------- /test/manual/issue-webpack-react-components/webpack-build-dev.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | npm run build:dev -------------------------------------------------------------------------------- /test/manual/issue-webpack-react-components/webpack-build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | npm run build -------------------------------------------------------------------------------- /test/manual/issue-webpack-react-components/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/manual/issue-webpack-react-components/webpack.config.js -------------------------------------------------------------------------------- /test/utils/FileSystem/Module/moduleLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/utils/FileSystem/Module/moduleLoader.js -------------------------------------------------------------------------------- /test/utils/FileSystem/Module/nocacheLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/utils/FileSystem/Module/nocacheLoader.js -------------------------------------------------------------------------------- /test/utils/FileSystem/Module/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/utils/FileSystem/Module/register.js -------------------------------------------------------------------------------- /test/utils/FileSystem/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/utils/FileSystem/Utils.js -------------------------------------------------------------------------------- /test/utils/FileSystem/loadModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/utils/FileSystem/loadModule.js -------------------------------------------------------------------------------- /test/utils/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/utils/file.js -------------------------------------------------------------------------------- /test/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/utils/helpers.js -------------------------------------------------------------------------------- /test/utils/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/utils/webpack.js -------------------------------------------------------------------------------- /test/utils_old/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/utils_old/file.js -------------------------------------------------------------------------------- /test/utils_old/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/utils_old/helpers.js -------------------------------------------------------------------------------- /test/utils_old/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/utils_old/webpack.js -------------------------------------------------------------------------------- /test/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/test/webpack.common.js -------------------------------------------------------------------------------- /webpack-remove-empty-scripts-1.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdiscus/webpack-remove-empty-scripts/HEAD/webpack-remove-empty-scripts-1.1.1.tgz --------------------------------------------------------------------------------