Skip to content

Commit 5a3fcd5

Browse files
authored
Chore/update (#24)
* update deps * fix dependapot config
1 parent 53a5c37 commit 5a3fcd5

File tree

3 files changed

+77
-858
lines changed

3 files changed

+77
-858
lines changed

.github/dependabot.yml

Lines changed: 55 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -4,101 +4,101 @@
44
version: 2
55
updates:
66
# Main npm/pnpm dependencies
7-
- package-ecosystem: "npm"
8-
directory: "/"
7+
- package-ecosystem: npm
8+
directory: /
99
schedule:
10-
interval: "weekly"
11-
day: "monday"
12-
time: "06:00"
13-
timezone: "UTC"
10+
interval: weekly
11+
day: monday
12+
time: '06:00'
13+
timezone: UTC
1414
open-pull-requests-limit: 10
1515
reviewers:
16-
- "pederzh" # Replace with your GitHub username
16+
- pederzh # Replace with your GitHub username
1717
assignees:
18-
- "pederzh" # Replace with your GitHub username
18+
- pederzh # Replace with your GitHub username
1919
commit-message:
20-
prefix: "chore"
21-
prefix-development: "chore"
22-
include: "scope"
20+
prefix: chore
21+
prefix-development: chore
22+
include: scope
2323
labels:
24-
- "dependencies"
25-
- "automated"
24+
- dependencies
25+
- automated
2626
# Group related packages together
2727
groups:
2828
# LangChain ecosystem
2929
langchain-packages:
3030
patterns:
31-
- "@langchain/*"
32-
- "langchain"
31+
- '@langchain/*'
32+
- langchain
3333
update-types:
34-
- "patch"
35-
- "minor"
34+
- patch
35+
- minor
3636
# TypeScript types
3737
typescript-types:
3838
patterns:
39-
- "@types/*"
39+
- '@types/*'
4040
update-types:
41-
- "patch"
42-
- "minor"
41+
- patch
42+
- minor
4343
# ESLint ecosystem
4444
eslint-packages:
4545
patterns:
46-
- "eslint*"
47-
- "@antfu/eslint-config"
46+
- 'eslint*'
47+
- '@antfu/eslint-config'
4848
update-types:
49-
- "patch"
50-
- "minor"
49+
- patch
50+
- minor
5151
# Development tools
5252
dev-tools:
5353
patterns:
54-
- "typescript"
55-
- "vitest"
56-
- "husky"
57-
- "lint-staged"
54+
- typescript
55+
- vitest
56+
- husky
57+
- lint-staged
5858
update-types:
59-
- "patch"
60-
- "minor"
59+
- patch
60+
- minor
6161
# Utility libraries
6262
utilities:
6363
patterns:
64-
- "lodash-es"
65-
- "uuid"
66-
- "winston"
67-
- "dotenv"
68-
- "ws"
64+
- lodash-es
65+
- uuid
66+
- winston
67+
- dotenv
68+
- ws
6969
update-types:
70-
- "patch"
71-
- "minor"
70+
- patch
71+
- minor
7272
# Schema and validation
7373
schema-validation:
7474
patterns:
75-
- "zod*"
76-
- "*json-schema*"
75+
- 'zod*'
76+
- '*json-schema*'
7777
update-types:
78-
- "patch"
79-
- "minor"
78+
- patch
79+
- minor
8080
# Ignore specific packages if needed
8181
ignore:
8282
# Example: ignore major updates for critical packages
83-
- dependency-name: "@modelcontextprotocol/sdk"
84-
update-types: ["version-update:semver-major"]
83+
- dependency-name: '@modelcontextprotocol/sdk'
84+
update-types: ['version-update:semver-major']
8585
# Example: ignore specific versions
8686
# - dependency-name: "some-package"
8787
# versions: ["1.x", "2.x"]
88-
88+
8989
# GitHub Actions workflow dependencies
90-
- package-ecosystem: "github-actions"
91-
directory: "/"
90+
- package-ecosystem: github-actions
91+
directory: /
9292
schedule:
93-
interval: "weekly"
94-
day: "monday"
95-
time: "06:00"
96-
timezone: "UTC"
93+
interval: weekly
94+
day: monday
95+
time: '06:00'
96+
timezone: UTC
9797
reviewers:
98-
- "pederzh" # Replace with your GitHub username
98+
- pederzh # Replace with your GitHub username
9999
commit-message:
100-
prefix: "ci"
101-
include: "scope"
100+
prefix: ci
101+
include: scope
102102
labels:
103-
- "github-actions"
104-
- "ci"
103+
- github-actions
104+
- ci

0 commit comments

Comments
 (0)