-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
38 additions
and
102 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,22 @@ | ||
test: | ||
npm test | ||
|
||
build: | ||
npm run build | ||
|
||
check-next-version: | ||
npm version --no-commit-hooks --no-git-tag-version patch | ||
git reset --hard | ||
|
||
test-next-version: | ||
npm pack | ||
|
||
pack: test-next-version | ||
|
||
RED := $(shell tput setaf 196) | ||
RESET := $(shell tput setaf 15) | ||
|
||
release: build test-next-version check-next-version | ||
echo "${RED}!! Run Release and Publish Github Action !!${RESET}" | ||
|
||
publish: release |
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