Skip to content

Commit f8f083a

Browse files
authored
Upgrade packages and add Dependabot configuration (#164)
* Upgrade vitest and related packages to v4.0.13 * Add Dependabot config and update .gitignore for Node.js
1 parent b3838fe commit f8f083a

File tree

4 files changed

+176
-308
lines changed

4 files changed

+176
-308
lines changed

.github/dependabot.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
version: 2
2+
updates:
3+
# Template app dependencies
4+
- package-ecosystem: "npm"
5+
directory: "/yourwork/template/app"
6+
schedule:
7+
interval: "weekly"
8+
groups:
9+
vitest:
10+
patterns:
11+
- "vitest*"
12+
- "@vitest/*"
13+
react:
14+
patterns:
15+
- "react"
16+
- "react-dom"
17+
- "@types/react*"
18+
typescript-eslint:
19+
patterns:
20+
- "@typescript-eslint/*"
21+
- "eslint*"
22+
testing-library:
23+
patterns:
24+
- "@testing-library/*"
25+
tailwindcss:
26+
patterns:
27+
- "tailwindcss"
28+
- "@tailwindcss/*"
29+
- "prettier-plugin-tailwindcss"
30+
31+
# Tracker backend dependencies
32+
- package-ecosystem: "npm"
33+
directory: "/yourwork/tracker"
34+
schedule:
35+
interval: "weekly"
36+
groups:
37+
aws-cdk:
38+
patterns:
39+
- "aws-cdk*"
40+
- "@aws-cdk/*"
41+
aws-sdk:
42+
patterns:
43+
- "@aws-sdk/*"
44+
typescript:
45+
patterns:
46+
- "typescript"
47+
- "@types/*"

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,3 +133,6 @@ model/
133133
notebooks/environment.yml
134134
yourwork/product
135135
yourwork/construction
136+
137+
# Node.js
138+
node_modules/

0 commit comments

Comments
 (0)