Skip to content

Commit b61012f

Browse files
committed
Update dependencies
1 parent 5a5d3ee commit b61012f

File tree

6 files changed

+815
-665
lines changed

6 files changed

+815
-665
lines changed

.github/workflows/nodejs.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v4
20-
- uses: actions/setup-node@v4
19+
- uses: actions/checkout@v5
20+
- uses: actions/setup-node@v5
2121
with:
22-
node-version: 22
22+
node-version: 24
2323
- run: |
2424
npm ci
2525
npm run lint
@@ -36,8 +36,8 @@ jobs:
3636
node-version: ['12', '14', '16']
3737

3838
steps:
39-
- uses: actions/checkout@v4
40-
- uses: actions/setup-node@v4
39+
- uses: actions/checkout@v5
40+
- uses: actions/setup-node@v5
4141
with:
4242
node-version: ${{ matrix.node-version }}
4343
- run: |
@@ -53,11 +53,11 @@ jobs:
5353

5454
strategy:
5555
matrix:
56-
node-version: ['18', '20', '22', '23']
56+
node-version: ['18', '20', '22', '24']
5757

5858
steps:
59-
- uses: actions/checkout@v4
60-
- uses: actions/setup-node@v4
59+
- uses: actions/checkout@v5
60+
- uses: actions/setup-node@v5
6161
with:
6262
node-version: ${{ matrix.node-version }}
6363
- run: |

lib/gulp-eslint-new.d.ts

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@ declare namespace gulpESLintNew
133133
| 'extensions'
134134
| 'globInputPaths'
135135
>
136-
& AdditionalOptions;
136+
&
137+
AdditionalOptions;
137138

138139
type GulpESLintNewFlatOptions
139140
=
@@ -146,19 +147,20 @@ declare namespace gulpESLintNew
146147
| 'globInputPaths'
147148
| 'passOnNoPatterns'
148149
>
149-
& AdditionalOptions;
150+
&
151+
AdditionalOptions;
150152

151153
type GulpESLintNewOptions =
152-
|
153-
((GulpESLintNewEslintrcOptions | GulpESLintNewFlatOptions) & { configType?: null | undefined; })
154-
| (GulpESLintNewEslintrcOptions & { configType: 'eslintrc'; })
155-
| (GulpESLintNewFlatOptions & { configType: 'flat'; });
154+
| (GulpESLintNewEslintrcOptions | GulpESLintNewFlatOptions) & { configType?: null | undefined; }
155+
| GulpESLintNewEslintrcOptions & { configType: 'eslintrc'; }
156+
| GulpESLintNewFlatOptions & { configType: 'flat'; };
156157

157158
type LintResult = eslint.LintResult;
158159

159160
type LintResults
160161
=
161-
LintResult[] &
162+
LintResult[]
163+
&
162164
{
163165
errorCount: number;
164166
fatalErrorCount: number;

0 commit comments

Comments
 (0)