This repository has been archived by the owner on Jun 16, 2021. It is now read-only.
forked from streamich/git-cz
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf: ⚡️ package upgrades + babel/core|eslint-pareser + husky
Breaking change node>=10.8, and husky@5 + babel-eslint deprecated to babel/core+eslint-parser This would come _after_ streamich#256 ```bash @semantic-release/changelog@5.0.1 @semantic-release/git@9.0.0 chai@4.3.0 eslint@7.21.0 eslint-plugin-jest@24.1.5 eslint-plugin-jsdoc@32.2.0 eslint-plugin-promise@4.3.1 eslint-plugin-unicorn@28.0.2 husky@5.1.1 inquirer@8.0.0 mocha@8.3.0 semantic-release@17.4.0 ``` Breaking Changes covered by: ```json "engines": { "node": ">=10.18" }, ``` `babel-eslint` deprecated - `@babel/core` - `@babel/eslint-parser` `husky` - 5.x upgrade with `.husky` folder and ported `pre-commit` and `prepare-commit-msg` BREAKING CHANGE: 🧨 ⬆️ node>=10.8, husky@5, 🔥️ babel-eslint 📦️ @babel/core|eslint-parser
- Loading branch information
1 parent
d8096aa
commit 4b7e2da
Showing
6 changed files
with
1,084 additions
and
809 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
_ |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
[ -n "$CI" ] && exit 0 | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
yarn lint |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[ -n "$CI" ] && exit 0 | ||
|
||
exec < /dev/tty | ||
node ./lib/cli.js --hook || true |
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
Oops, something went wrong.