├── .editorconfig ├── .github └── workflows │ └── nodejs.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src ├── index.ts └── schema.json ├── test ├── e2e │ └── webpack5 │ │ ├── package.json │ │ ├── tests │ │ ├── beautify │ │ │ ├── index.js │ │ │ └── input.css │ │ ├── disable │ │ │ ├── index.js │ │ │ └── input.css │ │ ├── fragment-intact │ │ │ ├── index.js │ │ │ └── input.css │ │ ├── mini-app │ │ │ ├── index.js │ │ │ └── input.css │ │ └── restructuring │ │ │ ├── index.js │ │ │ └── input.css │ │ ├── webpack.config.js │ │ └── yarn.lock └── unit │ └── test.js ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/src/schema.json -------------------------------------------------------------------------------- /test/e2e/webpack5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/test/e2e/webpack5/package.json -------------------------------------------------------------------------------- /test/e2e/webpack5/tests/beautify/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/test/e2e/webpack5/tests/beautify/index.js -------------------------------------------------------------------------------- /test/e2e/webpack5/tests/beautify/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/test/e2e/webpack5/tests/beautify/input.css -------------------------------------------------------------------------------- /test/e2e/webpack5/tests/disable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/test/e2e/webpack5/tests/disable/index.js -------------------------------------------------------------------------------- /test/e2e/webpack5/tests/disable/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/test/e2e/webpack5/tests/disable/input.css -------------------------------------------------------------------------------- /test/e2e/webpack5/tests/fragment-intact/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/test/e2e/webpack5/tests/fragment-intact/index.js -------------------------------------------------------------------------------- /test/e2e/webpack5/tests/fragment-intact/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/test/e2e/webpack5/tests/fragment-intact/input.css -------------------------------------------------------------------------------- /test/e2e/webpack5/tests/mini-app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/test/e2e/webpack5/tests/mini-app/index.js -------------------------------------------------------------------------------- /test/e2e/webpack5/tests/mini-app/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/test/e2e/webpack5/tests/mini-app/input.css -------------------------------------------------------------------------------- /test/e2e/webpack5/tests/restructuring/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/test/e2e/webpack5/tests/restructuring/index.js -------------------------------------------------------------------------------- /test/e2e/webpack5/tests/restructuring/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/test/e2e/webpack5/tests/restructuring/input.css -------------------------------------------------------------------------------- /test/e2e/webpack5/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/test/e2e/webpack5/webpack.config.js -------------------------------------------------------------------------------- /test/e2e/webpack5/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/test/e2e/webpack5/yarn.lock -------------------------------------------------------------------------------- /test/unit/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/test/unit/test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/clean-css-loader/HEAD/yarn.lock --------------------------------------------------------------------------------