Skip to content

Publishing new versions

br edited this page May 18, 2019 · 1 revision

First build a release using:

npx shadow-cljs release lwb-ui

Get into the plugin/ directory and commit your changes. Then pull down upstream changes and push your changes (remember the plugin directory is a git repository, it is a submodule.). Now release a new version using the apm publish command. The command requires a version number that should be incremented: either major, minor or patch.

Example:

cd plugin/
git commit
git pull
git push
apm publish patch
Clone this wiki locally