Skip to content

Commit ac69849

Browse files
Copilotempeje
andauthored
Fix vite vulnerabilities and enable Dependabot (#2)
* Initial plan * Fix vulnerabilities and enable dependabot Co-authored-by: empeje <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: empeje <[email protected]>
1 parent bc6d3d8 commit ac69849

File tree

3 files changed

+557
-519
lines changed

3 files changed

+557
-519
lines changed

.github/dependabot.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
version: 2
2+
updates:
3+
# Enable version updates for npm
4+
- package-ecosystem: "npm"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+
open-pull-requests-limit: 10
9+
groups:
10+
# Group all non-major updates
11+
development-dependencies:
12+
dependency-type: "development"
13+
update-types:
14+
- "minor"
15+
- "patch"
16+
production-dependencies:
17+
dependency-type: "production"
18+
update-types:
19+
- "minor"
20+
- "patch"
21+
22+
# Enable version updates for GitHub Actions
23+
- package-ecosystem: "github-actions"
24+
directory: "/"
25+
schedule:
26+
interval: "weekly"
27+
open-pull-requests-limit: 5

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@
3333
"@types/node": "^24.3.1",
3434
"@typescript-eslint/eslint-plugin": "^8.42.0",
3535
"@typescript-eslint/parser": "^8.42.0",
36-
"@vitest/coverage-v8": "^3.2.4",
37-
"@vitest/ui": "^3.2.4",
36+
"@vitest/coverage-v8": "^4.0.5",
37+
"@vitest/ui": "^4.0.5",
3838
"eslint": "^9.35.0",
3939
"prettier": "^3.6.2",
4040
"tsx": "^4.20.5",
4141
"typescript": "^5.9.2",
42-
"vitest": "^3.2.4"
42+
"vitest": "^4.0.5"
4343
}
4444
}

0 commit comments

Comments
 (0)