Skip to content
Merged
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
111 changes: 27 additions & 84 deletions .pnp.cjs

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

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed .yarn/cache/glob-npm-7.2.3-2d866d17a5-65676153e2.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
14 changes: 13 additions & 1 deletion docs/Tooling.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,10 +232,22 @@ yarn audit:fix # Attempt automatic fixes
### Responding to Vulnerabilities

1. **Check severity:** `yarn audit`
2. **Update affected package:** Edit `package.json`, run `yarn install`
2. **Update affected package:**
- **Direct dependency:** Update version in `package.json`, run `yarn install`
- **Transitive dependency:** Add to `resolutions` field in `package.json`:
```json
{
"resolutions": {
"vulnerable-package": "^patched.version"
}
}
```
This forces all packages to use the patched version, even if they request older versions.
3. **Verify fix:** `yarn audit:critical` (should show no suggestions)
4. **Push:** Pre-push hook confirms fix before code leaves your machine

**Note:** Dependabot alerts show the dependency chain (e.g., `tailwindcss → ... → glob 10.4.5`). Use `resolutions` when upstream packages haven't updated yet.

---

## Bundle Analysis
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@
"punycode": "^2.3.1",
"form-data": "^4.0.4",
"tmp": "^0.2.4",
"tar-fs": "^3.1.1"
"tar-fs": "^3.1.1",
"glob": "^10.5.0",
"mdast-util-to-hast": "^13.2.1",
"js-yaml": "^3.14.2"
}
}
Loading