Skip to content

Commit 88a21f3

Browse files
committed
fix(scripts): update script messaging and add @socketbin/* scope
1 parent 1f92aae commit 88a21f3

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

scripts/update.mjs

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@ async function main() {
2424

2525
try {
2626
if (!quiet) {
27-
logger.log('\n🔨 Monorepo Dependency Update\n')
27+
logger.log('\n🔨 Dependency Update\n')
2828
}
2929

3030
// Build taze command with appropriate flags for monorepo
3131
const tazeArgs = ['exec', 'taze', '-r', '-w']
3232

3333
if (!quiet) {
3434
if (apply) {
35-
logger.progress('Updating dependencies across monorepo...')
35+
logger.progress('Updating dependencies...')
3636
} else {
37-
logger.progress('Checking for updates across monorepo...')
37+
logger.progress('Checking for updates...')
3838
}
3939
}
4040

@@ -57,7 +57,14 @@ async function main() {
5757

5858
const socketResult = await spawn(
5959
'pnpm',
60-
['update', '@socketsecurity/*', '@socketregistry/*', '--latest', '-r'],
60+
[
61+
'update',
62+
'@socketsecurity/*',
63+
'@socketregistry/*',
64+
'@socketbin/*',
65+
'--latest',
66+
'-r',
67+
],
6168
{
6269
shell: WIN32,
6370
stdio: quiet ? 'pipe' : 'inherit',
@@ -90,7 +97,7 @@ async function main() {
9097
} else {
9198
if (!quiet) {
9299
if (apply) {
93-
logger.success('Dependencies updated across all packages')
100+
logger.success('Dependencies updated')
94101
} else {
95102
logger.success('All packages up to date')
96103
}

0 commit comments

Comments
 (0)