-
-
Notifications
You must be signed in to change notification settings - Fork 649
Closed
Labels
Description
Describe the bug
See pnpm output when installing 6.0.0:
WARN Issues with peer dependencies found
.
└─┬ webpack-cli 6.0.0
├─┬ @webpack-cli/configtest 3.0.0
│ └── ✕ unmet peer [email protected]: found 6.0.0
├─┬ @webpack-cli/info 3.0.0
│ └── ✕ unmet peer [email protected]: found 6.0.0
└─┬ @webpack-cli/serve 3.0.0
└── ✕ unmet peer [email protected]: found 6.0.0
To Reproduce
Install 6.0.0
Expected behavior
cli should not require itself at a lower version.
Additional context
For example:
webpack-cli/packages/serve/package.json
Line 25 in f70f8b0
| "webpack-cli": "5.x.x" |
anajavi, AviVahl and taketo1113