Run yarn dev in one terminal tab to start watch mode, and in another tab, run yarn start to launch Kap.
We strongly recommend installing an XO editor plugin for JavaScript linting and a Stylelint editor plugin for CSS linting. Both of these support auto-fix on save.
(You can do all the steps on github.com)
- Go to https://github.com/wulkano/kap/releases
- Click
Draft a new release - Write the new version, prefixed with
v, in theTag versionfield (Example:v2.0.0) - Leave the
Release titlefield blank - Write release notes
- Click
Save draft - Change
versionhere to the new version and use the version number as the commit title (Example:2.0.0) - CircleCI will now build the app and add the binaries to the release
- When CircleCI has attached the binaries to the release, click
Editon the release, and then clickPublish release
- Check out the
betabranch:git checkout beta - Rebase from the
mainbranch:git pull --rebase origin main - Change the
versionnumber inpackage.json - Amend the "Beta build customizations" commit:
git add . && git commit --amend - Force push to the
betabranch:git push --force - Tag a release with the version number in package.json and push it:
git tag -a "v2.0.0-beta.3" -m "v2.0.0-beta.3" && git push --follow-tags - Wait for CircleCI to add the binaries to a new GitHub Releases draft
- Go to the release draft that is created for you, check
This is a pre-release, and pressPublish release