Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deps): remove incorrectly duplicated peerDeps (#511)
- these are all inside of prod `dependencies` already (choose one) - notably, `antd` had a version mismatch between `dependencies` and `peerDependencies` (v5 vs v4) - `dependencies` supersede `peerDependencies` however, so the v5 dep was already used and the v4 dep was extraneous - see the [`yarn.lock` file](https://github.com/argoproj/argo-ui/blob/c65a9520366b0c0cf0ac585618d029e60041a94d/yarn.lock#L5124) as evidence, as well as a downstream `yarn.lock`, such as [Argo Workflows's](https://github.com/argoproj/argo-workflows/blob/93914261cff4216561c89c1f5f6123e7ad0d5f61/ui/yarn.lock#L2812) - note how this commit has no changes to the `yarn.lock` file either - this mismatch did cause install warnings downstream as well, which were impossible to resolve given this mismatch in `argo-ui`'s own deps - so those should now be resolved as well Signed-off-by: Anton Gilgur <[email protected]>
- Loading branch information