-
update dependencies (
ncu -i
) -
Increase version number in
package.json
-
Update CHANGELOG with new version number
-
test and compile assets
rm -rf dist/ npm test npm run compile
-
commit as "v#.#.#"
$ git commit -m "v`node -p -e 'require("./package.json").version'`"
-
tag as "v#.#.#"
$ git tag -am "v`node -p -e 'require("./package.json").version'`" \ "v`node -p -e 'require("./package.json").version'`"
-
publish
npm publish --scope @innoq --access public
-
push to git
$ git push --follow-tags