chore: Add pre-release remove-pre-release tasks

This commit is contained in:
peaceiris 2021-03-10 19:57:43 +09:00
parent b52df3c817
commit 9a18a4d0fc
No known key found for this signature in database
GPG Key ID: 5868468A8EBA64EC
1 changed files with 11 additions and 0 deletions

View File

@ -8,3 +8,14 @@ build:
.PHONY: run
run:
docker-compose run --rm dev bash
.PHONY: pre-release
pre-release:
npm run build
git add ./lib
git commit -m "chore: npm run build"
.PHONY: remove-pre-release
remove-pre-release:
git rm -f ./lib
git commit -m "chore: remove lib"