-
Notifications
You must be signed in to change notification settings - Fork 15
/
Makefile
30 lines (21 loc) · 884 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
.PHONY: all list release templates version
VERSION := $(shell node -p -e "require('./package.json').version")
LEAD := $(shell head -n 1 LEAD.md)
all: list
list:
@grep '^\.PHONY' Makefile | cut -d' ' -f2- | tr ' ' '\n'
readme:
npx referencer src README.md --in-place
npx doctoc --maxlevel 3 README.md
release:
git checkout master && git pull origin && git fetch -p && git diff
@echo "\nContinuing in 10 seconds. Press <CTRL+C> to abort\n" && sleep 10
@git log --pretty=format:"%C(yellow)%h%Creset %s%Cgreen%d" --reverse -20
@echo "\nReleasing v$(VERSION) in 10 seconds. Press <CTRL+C> to abort\n" && sleep 10
git commit -a -m 'v$(VERSION)' && git tag -a v$(VERSION) -m 'v$(VERSION)'
git push --follow-tags
templates:
sed -i -E "s/@(\w*)/@$(LEAD)/" .github/issue_template.md
sed -i -E "s/@(\w*)/@$(LEAD)/" .github/pull_request_template.md
version:
@echo $(VERSION)