Skip to content

Commit 3a01188

Browse files
fix(deps): update dependency minimatch to v9 or v10 (#337)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: JounQin <[email protected]>
1 parent 780f4df commit 3a01188

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.changeset/purple-ravens-invent.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"eslint-plugin-json-schema-validator": patch
3+
---
4+
5+
fix(deps): update dependency `minimatch` to `v9` or `v10`

.github/workflows/NodeCI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: actions/setup-node@v4
1515
with:
16-
node-version: 18
16+
node-version: lts/*
1717
- name: Install Packages
1818
run: yarn
1919
- name: Lint
@@ -36,7 +36,7 @@ jobs:
3636
with:
3737
node-version: ${{ matrix.node-version }}
3838
- name: Install Packages
39-
run: yarn install --ignore-engines
39+
run: yarn --ignore-engines
4040
- name: Test
4141
run: yarn test
4242
test-with-eslint8:

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@
5757
"eslint-json-compat-utils": "^0.2.1",
5858
"json-schema-migrate": "^2.0.0",
5959
"jsonc-eslint-parser": "^2.0.0",
60-
"minimatch": "^8.0.0",
61-
"synckit": "^0.11.0",
60+
"minimatch": "^9.0.0 || ^10.0.0",
61+
"synckit": "^0.11.1",
6262
"toml-eslint-parser": "^0.10.0",
6363
"tunnel-agent": "^0.6.0",
6464
"yaml-eslint-parser": "^1.0.0"

src/rules/no-invalid.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { getStaticYAMLValue } from "yaml-eslint-parser";
55
import type { AST as TOML } from "toml-eslint-parser";
66
import { getStaticTOMLValue } from "toml-eslint-parser";
77
import { createRule } from "../utils/index";
8-
import minimatch from "minimatch";
8+
import { minimatch } from "minimatch";
99
import path from "path";
1010
import type { PathData } from "../utils/ast/index";
1111
import {

0 commit comments

Comments
 (0)