Skip to content

Commit 0b3cec8

Browse files
authored
chore: easy upgrade dev deps (#1344)
1 parent 542b214 commit 0b3cec8

File tree

7 files changed

+1571
-1357
lines changed

7 files changed

+1571
-1357
lines changed

examples/vitest.config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
import { defineConfig } from 'vitest/config'
22

3+
const isCI = Boolean(process.env[`CI`])
4+
35
export default defineConfig({
46
test: {
57
dir: `./__tests__`,
68
globalSetup: [`../tests/_/services/pokemonVitest.ts`],
9+
bail: isCI ? undefined : 1,
10+
maxConcurrency: isCI ? undefined : 1,
711
},
812
})

package.json

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
"@0no-co/graphql.web": "^1.0.12",
145145
"@graphql-typed-document-node/core": "^3.2.0",
146146
"@molt/command": "^0.9.0",
147-
"es-toolkit": "^1.31.0",
147+
"es-toolkit": "^1.35.0",
148148
"is-plain-obj": "^4.1.0"
149149
},
150150
"peerDependencies": {
@@ -169,27 +169,27 @@
169169
}
170170
},
171171
"devDependencies": {
172-
"@arethetypeswrong/cli": "^0.17.2",
172+
"@arethetypeswrong/cli": "^0.17.4",
173173
"@dprint/formatter": "^0.4.1",
174-
"@dprint/typescript": "^0.93.3",
174+
"@dprint/typescript": "^0.94.0",
175175
"@opentelemetry/api": "^1.9.0",
176176
"@opentelemetry/sdk-trace-base": "^1.30.0",
177177
"@opentelemetry/sdk-trace-node": "^1.30.0",
178-
"@pothos/core": "^4.3.0",
179-
"@pothos/plugin-simple-objects": "^4.1.0",
180-
"@pothos/plugin-zod": "^4.1.0",
181-
"@tsconfig/node20": "^20.1.4",
178+
"@pothos/core": "^4.6.0",
179+
"@pothos/plugin-simple-objects": "^4.1.1",
180+
"@pothos/plugin-zod": "^4.2.0",
181+
"@tsconfig/node20": "^20.1.5",
182182
"@tsconfig/strictest": "^2.0.5",
183183
"@types/body-parser": "^1.19.5",
184-
"@types/express": "^5.0.0",
185-
"@types/node": "^22.10.5",
186-
"@typescript-eslint/eslint-plugin": "^8.19.0",
187-
"@typescript-eslint/parser": "^8.19.0",
184+
"@types/express": "^5.0.1",
185+
"@types/node": "^22.14.1",
186+
"@typescript-eslint/eslint-plugin": "^8.30.1",
187+
"@typescript-eslint/parser": "^8.30.1",
188188
"async-cleanup": "^1.0.0",
189189
"doctoc": "^2.2.1",
190-
"dprint": "^0.48.0",
190+
"dprint": "^0.49.1",
191191
"dripip": "^0.10.0",
192-
"eslint": "^9.17.0",
192+
"eslint": "^9.25.0",
193193
"eslint-config-prisma": "^0.6.0",
194194
"eslint-plugin-deprecation": "^3.0.0",
195195
"eslint-plugin-only-warn": "^1.1.0",
@@ -200,23 +200,23 @@
200200
"execa": "^9.5.2",
201201
"fs-jetpack": "^5.1.0",
202202
"get-port": "^7.1.0",
203-
"globby": "^14.0.2",
203+
"globby": "^14.1.0",
204204
"graphql": "^16.10.0",
205-
"graphql-scalars": "^1.24.0",
205+
"graphql-scalars": "^1.24.2",
206206
"graphql-tag": "^2.12.6",
207207
"graphql-upload-minimal": "^1.6.1",
208-
"graphql-yoga": "^5.10.9",
209-
"jsdom": "^25.0.1",
210-
"memfs": "^4.15.3",
211-
"prettier": "^3.4.2",
212-
"publint": "^0.3.0",
208+
"graphql-yoga": "^5.13.4",
209+
"jsdom": "^26.1.0",
210+
"memfs": "^4.17.0",
211+
"prettier": "^3.5.3",
212+
"publint": "^0.3.12",
213213
"strip-ansi": "^7.1.0",
214-
"tsx": "^4.19.2",
215-
"type-fest": "^4.31.0",
216-
"typescript": "^5.7.2",
217-
"typescript-eslint": "^8.19.0",
218-
"vitepress": "^1.5.0",
219-
"vitest": "^2.1.8",
220-
"zod": "^3.24.1"
214+
"tsx": "^4.19.3",
215+
"type-fest": "^4.40.0",
216+
"typescript": "^5.8.3",
217+
"typescript-eslint": "^8.30.1",
218+
"vitepress": "^1.6.3",
219+
"vitest": "^3.1.1",
220+
"zod": "^3.24.3"
221221
}
222222
}

0 commit comments

Comments
 (0)