-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(*): don't release for types
docs
, style
, test
BREAKING CHANGE: `nlm` will no longer create a patch tag for `docs`, `style` and `test` commits. If your PR only contains these type of commits, it will no longer release a new version.
- Loading branch information
Andreas Richter
committed
Jul 31, 2020
1 parent
1f114c0
commit 11665ca
Showing
7 changed files
with
215 additions
and
109 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
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,9 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
git init | ||
|
||
git checkout -b minor-commits | ||
|
||
echo "console.log('more');" > feat.js | ||
git add feat.js | ||
git commit -m "feat: Adding feat commit" |
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,17 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
git init | ||
|
||
git checkout -b patch-commits | ||
|
||
echo "console.log('more');" > chore.js | ||
git add chore.js | ||
git commit -m "chore: Adding chore commit" | ||
|
||
echo "console.log('more');" > refactor.js | ||
git add refactor.js | ||
git commit -m "chore: Adding refactor commit" | ||
|
||
echo "console.log('more');" > perf.js | ||
git add perf.js | ||
git commit -m "chore: Adding perf commit" |
Oops, something went wrong.