nestjs / nest-cli

CLI tool for Nest applications 🍹
https://nestjs.com
Other
1.98k stars 395 forks source link

Sync deps with @nestjs/schematics #2771

Closed hfhchan-plb closed 3 weeks ago

hfhchan-plb commented 1 month ago

Is there an existing issue that is already proposing this?

Is your feature request related to a problem? Please describe it

The newest @nestjs/cli (10.4.5) depends on:

    "@angular-devkit/core" "17.3.8"
    "@angular-devkit/schematics" "17.3.8"
    "@angular-devkit/schematics-cli" "17.3.8"

while the newest @nestjs/schematics (10.2.3) depends on:

    "@angular-devkit/core" "17.3.11"
    "@angular-devkit/schematics" "17.3.11"

Describe the solution you'd like

The deps version should be synced between @nestjs/schematics and @nestjs/cli, or a version range should be used instead:

    "@angular-devkit/core" "^17.3.8"
    "@angular-devkit/schematics" "^17.3.8"
    "@angular-devkit/schematics-cli" "^17.3.8"

Teachability, documentation, adoption, migration strategy

No response

What is the motivation / use case for changing the behavior?

Avoiding too many deps in yarn.lock

micalevisk commented 3 weeks ago

2770 #2764 would address this