Skip to content

Commit bd27078

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/config.mjs
1 parent 05f4137 commit bd27078

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"@socketregistry/is-unicode-supported": "workspace:*",
6666
"@socketregistry/packageurl-js": "catalog:",
6767
"@socketregistry/scripts": "file:scripts",
68-
"@socketsecurity/lib": "3.3.0",
68+
"@socketsecurity/lib": "3.3.1",
6969
"@types/fs-extra": "catalog:",
7070
"@types/node": "catalog:",
7171
"@types/normalize-package-data": "catalog:",

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/config.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ import { fileURLToPath } from 'node:url'
99

1010
import colors from 'yoctocolors-cjs'
1111

12+
import { LOG_SYMBOLS } from '@socketsecurity/lib/logger'
13+
1214
const __dirname = path.dirname(fileURLToPath(import.meta.url))
1315
const rootPath = path.join(__dirname, '..', '..')
1416
const parentPath = path.join(rootPath, '..')
@@ -91,7 +93,7 @@ const log = {
9193
info: msg => console.log(msg),
9294
progress: msg => {
9395
process.stdout.write('\r\x1b[K')
94-
process.stdout.write(` ${msg}`)
96+
process.stdout.write(` ${LOG_SYMBOLS.reason} ${msg}`)
9597
},
9698
step: msg => console.log(`\n${msg}`),
9799
substep: msg => console.log(` ${msg}`),

0 commit comments

Comments
 (0)