Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified .husky/commit-msg
100644 → 100755
Empty file.
1 change: 0 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
registry=https://registry.npmjs.org/
minimumreleaseage=1440
11 changes: 7 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,20 @@
# into a non-zero exit, not a warning. esbuild ships a native binary via postinstall.
allowBuilds:
esbuild: true
# @swc/core arrives with @repobuddy/jest v5 and ships a native binary the same way.
"@swc/core": true

# The soak lived in .npmrc as `minimumreleaseage`, which is not a key pnpm or npm
# reads — npm warned "Unknown project config" and `pnpm config get minimumReleaseAge`
# returned undefined, so no dependency was ever held back. pnpm reads it here.
minimumReleaseAge: 1440
# Without strict, pnpm silently falls back past the window instead of failing, so the
# soak self-excludes exactly when it would have mattered.
minimumReleaseAgeStrict: true

# @typescript-eslint/parser@6.21.0 (via eslint-plugin-harmony) is the only thing
# pulling minimatch 9.x, and it pins 9.0.3 — GHSA high, ReDoS in matchOne() via
# multiple non-adjacent GLOBSTAR segments, fixed in 9.0.7. Dev-only, but it is the
# repo's one open Dependabot alert. Scoped to the 9 line so 3/5/7/8/10 are untouched.
overrides:
minimatch@9: ^9.0.7
Loading