Skip to content

Commit 1dcfccf

Browse files
committed
chore(deps): add -w flag to taze in update script
- Modified update script to always write changes to package.json - Updated pnpm packageManager from 10.27.0 to 10.28.0
1 parent ff56c62 commit 1dcfccf

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@socketregistry/monorepo",
33
"version": "1.0.0",
4-
"packageManager": "pnpm@10.27.0",
4+
"packageManager": "pnpm@10.28.0",
55
"private": true,
66
"license": "MIT",
77
"description": "Monorepo for Socket.dev optimized package overrides",

scripts/update.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,9 @@ async function main() {
3232
}
3333

3434
// Build taze command with appropriate flags for monorepo.
35-
const tazeArgs = ['exec', 'taze', '-r']
35+
const tazeArgs = ['exec', 'taze', '-r', '-w']
3636

3737
if (apply) {
38-
tazeArgs.push('-w')
3938
if (!quiet) {
4039
logger.progress('Updating dependencies across monorepo...')
4140
}

0 commit comments

Comments
 (0)