We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2caba0a commit 874ae63Copy full SHA for 874ae63
HOWTO
@@ -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
@@ -36,5 +36,8 @@ npm-test: npm-build
36
npm-publish:
37
cd $(DIR)/graphviz-visual-editor; npm publish
38
39
+howto:
40
+ cat HOWTO
41
+
42
clean:
43
rm -rf $(GENERATED_FILES)
0 commit comments