Skip to content

Commit 66b78eb

Browse files
committed
chore: update @socketsecurity/lib to 3.3.1 and use LOG_SYMBOLS.reason
- Update @socketsecurity/lib to 3.3.1 - Replace hardcoded ∴ symbol with LOG_SYMBOLS.reason in scripts/claude.mjs
1 parent a6d3dc7 commit 66b78eb

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"@biomejs/biome": "2.2.4",
6262
"@eslint/compat": "1.3.2",
6363
"@eslint/js": "9.35.0",
64-
"@socketsecurity/lib": "3.3.0",
64+
"@socketsecurity/lib": "3.3.1",
6565
"@socketsecurity/registry": "2.0.2",
6666
"@types/node": "24.9.2",
6767
"@typescript/native-preview": "7.0.0-dev.20250926.1",

pnpm-lock.yaml

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/claude.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import { deleteAsync as del } from 'del'
1919
import colors from 'yoctocolors-cjs'
2020

2121
import { parseArgs } from '@socketsecurity/lib/argv/parse'
22+
import { LOG_SYMBOLS } from '@socketsecurity/lib/logger'
2223
import { spawn } from '@socketsecurity/lib/spawn'
2324

2425
const __dirname = path.dirname(fileURLToPath(import.meta.url))
@@ -98,7 +99,7 @@ const log = {
9899
substep: msg => console.log(` ${msg}`),
99100
progress: msg => {
100101
process.stdout.write('\r\x1b[K')
101-
process.stdout.write(` ${msg}`)
102+
process.stdout.write(` ${LOG_SYMBOLS.reason} ${msg}`)
102103
},
103104
done: msg => {
104105
process.stdout.write('\r\x1b[K')

0 commit comments

Comments
 (0)