Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
fasttime committed Mar 30, 2024
1 parent 0f21042 commit 8e42d88
Show file tree
Hide file tree
Showing 5 changed files with 1,386 additions and 6,786 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# gulp-eslint-new · [![npm version][npm badge]][npm URL]

> A [gulp](https://gulpjs.com/) plugin to lint code with [ESLint](https://eslint.org/) 8
> A [gulp](https://gulpjs.com/) plugin to lint code with [ESLint](https://eslint.org/) 8.
## Installation

Make sure that you are using a version of Node.js [supported by ESLint 8](https://eslint.org/docs/user-guide/getting-started#prerequisites).
For TypeScript support, you need TypeScript 4.2 or later.
For TypeScript support, you need TypeScript 4.6 or later.

To install gulp-eslint-new, [use](https://docs.npmjs.com/cli/install) [npm](https://docs.npmjs.com/about-npm):

Expand Down
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,6 @@ function tsTest(tsVersion, tsPkgName)
return task;
}

task('ts-test', parallel(tsTest('4.2', 'typescript_4.2'), tsTest('5', 'typescript_5')));
task('ts-test', parallel(tsTest('4.6', 'typescript_4.6'), tsTest('5', 'typescript_5')));

task('default', series(parallel('clean', 'lint', 'ts-test'), 'test'));
task('default', series('clean', parallel('lint', 'ts-test'), 'test'));

0 comments on commit 8e42d88

Please sign in to comment.