-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature #94 [BREAKING] Drop support for Node.js 10 and 12, ensure in …
…the CI tests are run under multiple Node.js versions (Kocal) This PR was squashed before being merged into the main branch. Discussion ---------- [BREAKING] Drop support for Node.js 10 and 12, ensure in the CI tests are run under multiple Node.js versions Let's _modernize_ this repository 🙌🏻 Starting first with CI improvments Commits ------- 0db4ba3 [BREAKING] Drop support for Node.js 10 and 12, ensure in the CI tests are run under multiple Node.js versions
- Loading branch information
Showing
2 changed files
with
20 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
"license": "MIT", | ||
"author": "Titouan Galopin <[email protected]>", | ||
"engines": { | ||
"node": "^10.13.0 || >=12.0.0" | ||
"node": "^14.15.0 || ^16.10.0 || ^18.12.0 || ^20.0.0 || >=22.0" | ||
}, | ||
"scripts": { | ||
"build": "yarn rollup -c", | ||
|
@@ -53,6 +53,9 @@ | |
"webpack": "^5.11.1", | ||
"webpack-cli": "^4.3.0" | ||
}, | ||
"resolutions": { | ||
"@types/jest": "^27.0" | ||
}, | ||
"eslintConfig": { | ||
"root": true, | ||
"parser": "@typescript-eslint/parser", | ||
|