THIS REPO HAS NOW BEEN MERGED INTO THE CAPLIN FRONT END MONOREPO; IT IS NO LONGER BEING ACTIVELY USED
This monorepo contains packages that are designed to be used as part of a Caplin development environment. They are not designed for usage in generic web applications. The more important packages have their own README.md files.
We are using conventional-changelog to programatically create changelogs.
Verify the package already has a CHANGELOG.md
, if not see below for steps to
create one.
- Make changes
- Commit those changes following the conventional-changelog commit style
yarn run release
If the package you are modifying has no CHANGELOG.md
file, then create a
CHANGELOG.md
. First cd
into the package folder and run:
conventional-changelog -p angular -i CHANGELOG.md -s -r 0 --commit-path .
You should run this before you make your commits and update the
package.json
version.
Then tag the package's last release (the last time its version was updated).
git tag [email protected] 50100c3aa8376e
The format of the tag is NAME_OF_PACKAGE@LAST_PUBLISHED_VERSION
and the commit
is the commit where the package.json
version was changed.
Push the newly created tag to the server
git push origin [email protected]