Document release process

This commit is contained in:
Aslak Hellesøy
2015-02-04 08:49:46 +00:00
parent e0102a102f
commit 1ff9ed3f81
2 changed files with 8 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
Release process
---------------
npm outdated --depth 0 # See if you can upgrade any dependencies
npm version [major|minor|patch] # Update package.json
npm publish # Tag repo and publish npm package
+2 -1
View File
@@ -30,6 +30,7 @@
"mocha": "~1.21.4"
},
"scripts": {
"test": "mocha test/* --reporter spec"
"test": "mocha test/* --reporter spec",
"postpublish": "git push && git push --tags"
}
}