Skip to content

Commit c5a987b

Browse files
committed
Merge remote-tracking branch 'origin' into support-valibot-2
2 parents 9f0a5ec + 6108482 commit c5a987b

File tree

6 files changed

+288
-279
lines changed

6 files changed

+288
-279
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v3
12-
- uses: pnpm/action-setup@v2
12+
- uses: pnpm/action-setup@v3
1313
with:
14-
version: 8
14+
package_json_file: ./package.json
1515
- name: Setup Node
1616
uses: actions/setup-node@v3
1717
with:
@@ -25,9 +25,9 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- uses: actions/checkout@v3
28-
- uses: pnpm/action-setup@v2
28+
- uses: pnpm/action-setup@v3
2929
with:
30-
version: 8
30+
package_json_file: ./package.json
3131
- name: Setup Node
3232
uses: actions/setup-node@v3
3333
with:

eslint.config.mjs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,8 @@ export default antfu({
1212
'README.md',
1313
],
1414
}, {
15-
rules: { 'style/semi': 'off' },
15+
rules: {
16+
'style/semi': 'off',
17+
'regexp/no-unused-capturing-group': 'off',
18+
},
1619
})

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "graphql-codegen-typescript-validation-schema",
33
"version": "0.14.1",
4+
"packageManager": "[email protected]",
45
"description": "GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema",
56
"respository": {
67
"type": "git",
@@ -75,7 +76,7 @@
7576
"@tsconfig/recommended": "1.0.6",
7677
"@types/graphlib": "^2.1.8",
7778
"@types/node": "^20.0.0",
78-
"eslint": "9.3.0",
79+
"eslint": "9.4.0",
7980
"jest": "29.7.0",
8081
"myzod": "1.11.0",
8182
"npm-run-all2": "6.2.0",

0 commit comments

Comments
 (0)