ember-cli-fastboot icon indicating copy to clipboard operation
ember-cli-fastboot copied to clipboard

Unnecessary package duplication

Open ef4 opened this issue 1 year ago • 2 comments

If you install ember-cli-fastboot 4.1.5, you will always get two different versions of fastboot in your dependency graph:

ember-cli-fastboot 4.1.5
├── fastboot 4.1.5
└─┬ fastboot-express-middleware 4.1.2
  └── fastboot 4.1.2

This is because workspace:* dependencies become exact version matches when published.

It would probably be better to use workspace:^.

ef4 avatar Sep 18 '24 17:09 ef4

Related PR https://github.com/ember-fastboot/ember-cli-fastboot/pull/948

i can update it with suggestion to use caret everywhere

SergeAstapov avatar Sep 18 '24 18:09 SergeAstapov

@SergeAstapov yes if you update it to a ^ everywhere, I would merge that 👍

I wasn't confident enough to merge your other PR because I didn't have a real example of the effect, and Ed's example shows that we probably want to minimise the duplication 👍

mansona avatar Sep 19 '24 10:09 mansona