You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore(workspace): register tools/* + vendor/* as workspace packages
Adds two workspace globs to pnpm-workspace.yaml so internal developer
utilities can declare workspace dependencies without brittle relative
paths:
- tools/* — developer-only utilities (audits, codemods, scripts).
Not published, not part of the dist tree.
- vendor/* — vendored upstream code shipped as workspace packages so
tools can reference it via `workspace:*` instead of
`../../../vendor/...`.
Adds matching infrastructure entries so vendor/ + tools/ never leak
into linter, formatter, size-check, or published-exports output:
- .oxfmtrc.json: skip **/vendor.
- .oxlintrc.json: skip **/vendor.
- scripts/validate/file-size.mts: skip 'vendor' in SKIP_DIRS.
- scripts/fix/generate-package-exports.mts: ignore tools/** and
vendor/** so the published @socketsecurity/lib package.json
doesn't pick up developer-tool exports on every regen.
Setup for the prim primordials-audit tool landing in a follow-up
commit.
0 commit comments