gitextract_wps1zf6f/ ├── .changeset/ │ ├── cold-wolves-occur.md │ └── config.json ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github/ │ └── workflows/ │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .mocharc.yml ├── .npmignore ├── .nycrc ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── bin/ │ └── webpack-dashboard.js ├── dashboard/ │ └── index.js ├── docs/ │ └── getting-started.md ├── examples/ │ ├── .eslintrc.json │ ├── config/ │ │ ├── webpack.config.js │ │ └── webpack.config.ts │ ├── duplicates-esm/ │ │ ├── package.json │ │ └── src/ │ │ └── index.js │ ├── simple/ │ │ ├── package.json │ │ └── src/ │ │ └── index.js │ └── tree-shaking/ │ ├── package.json │ └── src/ │ └── index.js ├── index.js ├── package.json ├── plugin/ │ ├── index.d.ts │ └── index.js ├── test/ │ ├── .eslintrc.json │ ├── base.spec.js │ ├── bin/ │ │ └── webpack-dashboard.spec.js │ ├── dashboard/ │ │ └── index.spec.js │ ├── plugin/ │ │ └── index.spec.js │ ├── setup.js │ └── utils/ │ ├── format-assets.spec.js │ ├── format-modules.spec.js │ ├── format-output.spec.js │ └── format-versions.spec.js └── utils/ ├── error-serialization.js ├── format-assets.js ├── format-duplicates.js ├── format-modules.js ├── format-output.js ├── format-problems.js └── format-versions.js