Skip to content

Commit 874ae63

Browse files
committed
Added HOWTO file and howto target in Makefile
1 parent 2caba0a commit 874ae63

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

HOWTO

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Release
2+
# =======
3+
#
4+
# Push branch:
5+
# make push
6+
# Create pull request and merge it:
7+
# make pull
8+
# Update "version" in package.json
9+
# Commit with message v<version>, e.g.:
10+
# git commit -m "v0.1.0"
11+
# git tag -a v<version> -m <msg>, e.g.:
12+
# git tag -a v0.1.0 -m "Animated growth of entering edges"
13+
# List tags:
14+
# git tag -n
15+
# Push to git and publish on npm
16+
# make public
17+
# Create a release on github

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,8 @@ npm-test: npm-build
3636
npm-publish:
3737
cd $(DIR)/graphviz-visual-editor; npm publish
3838

39+
howto:
40+
cat HOWTO
41+
3942
clean:
4043
rm -rf $(GENERATED_FILES)

0 commit comments

Comments
 (0)