Skip to content

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

Notifications You must be signed in to change notification settings

naeramarth7/update-scoped-packages

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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