-
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build!: minimum supported Node.js version is 18 (#345)
* build!: minimum supported node version is 18 * chore: use minimum node 18.12.0
- Loading branch information
1 parent
fdb0ab2
commit 1ee4588
Showing
7 changed files
with
1,617 additions
and
1,041 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 |
---|---|---|
|
@@ -2,6 +2,7 @@ logs | |
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
.cspellcache | ||
.eslintcache | ||
|
||
/coverage | ||
|
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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
module.exports = { | ||
'*.js': ['eslint --fix', 'prettier --write', 'cspell'], | ||
'*.{json,md,yml,css,ts}': ['prettier --write'], | ||
'*': [ | ||
'prettier --cache --write --ignore-unknown', | ||
'cspell --cache --no-must-find-files', | ||
], | ||
'*.js': ['eslint --cache --fix'], | ||
}; |
Oops, something went wrong.