Skip to content

How to make a new release

Jimmy Somsanith edited this page May 9, 2017 · 1 revision

How to make a new release

  1. Checkout the release script branch
git co release/script
  1. Execute the script with the tag name to release
./release.sh <tag-name>

Example : ./release.sh v1.0.0-alpha.2

This script has multiple steps :

  • Sync your local repo with the json-schema-form upstream repo
  • Create a branch for the release, based on the git tag
  • Install extra dev dependency that the npm script will use
  • Modify package.json to change package name and to the include the build script only based on babel
  • Generate the build
  • Commit and push it on github
  • Publish on npm
Clone this wiki locally