Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 665 Bytes

README.md

File metadata and controls

37 lines (27 loc) · 665 Bytes

update-scoped-packages

Update all packages within a given scope (e.g. @nestjs).

Usage

npx update-scoped-packages <scope> (<version>)

Examples

Update all @angular/* packages to the latest version:

npx update-scoped-packages @angular

# Output:
[update-scoped-packages] Updating dependencies:
  * @angular/core@latest
  * @angular/common@latest
  * ...
[update-scoped-packages] DONE

Update all @angular/* packages to a specific version:

npx update-scoped-packages @angular 12

# Output:
[update-scoped-packages] Updating dependencies:
  * @angular/core@12
  * @angular/common@12
  * ...
[update-scoped-packages] DONE