-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@REM update all packages to the latest minor and patch version | ||
|
||
@REM ensure PNPM is installed | ||
CALL pnpm add -g pnpm | ||
|
||
@REM check all updates and update them | ||
CALL npx --yes npm-check-updates --packageManager npm --target minor -u | ||
|
||
@REM install node dependencies | ||
CALL pnpm i --no-frozen-lockfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# update all packages to the latest minor and patch version | ||
|
||
# ensure PNPM is installed | ||
pnpm add -g pnpm | ||
|
||
# check all updates and update them | ||
npx --yes npm-check-updates --packageManager pnpm --target minor -u | ||
|
||
# install node dependencies | ||
pnpm i --no-frozen-lockfile |