diff --git a/.scripts/local/bump.bat b/.scripts/local/bump.bat new file mode 100644 index 0000000..4d4aeed --- /dev/null +++ b/.scripts/local/bump.bat @@ -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 diff --git a/.scripts/local/bump.sh b/.scripts/local/bump.sh new file mode 100644 index 0000000..631b08e --- /dev/null +++ b/.scripts/local/bump.sh @@ -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