npm run dev:demo
Open http://localhost:3000/ to see the demo browser.
npm run test
The commits must be Commitizen friendly. There is no commit message validation, so make sure your commits stuck to the guidelines before pushing.
Building and deploying the docs is done automatically via GH Actions for the branches dev
and master
.
Use script at .github/release.sh
and replace X.X.X
with the version:
./.github/release.sh X.X.X
- Make sure you're in a clean git state (
git status
should report "nothing to commit"). - Bump the version numbers in both
package.json
andlib/ng-vcl/package.json
. - Run
npm run changelog
to updateCHANGELOG.md
. - Run
npm run build
to build the library. - Commit with the message
chore: release
. - Create a tag using
git tag vX.X.X
replacingX.X.X
with the version. - Push commit using
git push --all
(to include tags) - Publish the release
npm run publish