Skip to content

Commit 2cd34bb

Browse files
authored
chore(deps): resolve all dependabot alerts via dev-dependency updates (#229)
- npm audit fix across the dev tree (vitest 4.1.x, vite 7.3.x, svelte, handlebars, lodash, tar, undici, and friends) - 31 advisories cleared - override undici to ^6.27.0 under @actions/http-client (no patched 5.x) - re-resolve bundled npm to 11.18.0, whose vendored undici 6.27.0 fixes the last advisory npm audit fix cannot reach - add .github/dependabot.yml (weekly, grouped npm + github-actions) Production deps (fuse.js, openai) are unchanged; shipped main.js is identical.
1 parent ef4ecbd commit 2cd34bb

3 files changed

Lines changed: 8515 additions & 9869 deletions

File tree

.github/dependabot.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
open-pull-requests-limit: 5
8+
groups:
9+
npm-minor-patch:
10+
applies-to: version-updates
11+
patterns:
12+
- "*"
13+
update-types:
14+
- "minor"
15+
- "patch"
16+
npm-security:
17+
applies-to: security-updates
18+
patterns:
19+
- "*"
20+
- package-ecosystem: "github-actions"
21+
directory: "/"
22+
schedule:
23+
interval: "weekly"

0 commit comments

Comments
 (0)