You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
481 B
31 lines
481 B
# Release Instructions |
|
|
|
1. Build packages |
|
|
|
```bash |
|
$ npm run build-all |
|
``` |
|
|
|
1. Add release notes to CHANGELOG.md |
|
|
|
1. Change version number in package.json |
|
|
|
1. Change version number in bower.json |
|
|
|
1. Update CDN urls in README.md |
|
|
|
1. Commit changes and tag code |
|
|
|
```bash |
|
$ git add . --all |
|
$ git commit -a -m "bumped version number" |
|
$ git push origin master |
|
$ git tag <version-number> |
|
$ git push --tags |
|
``` |
|
|
|
1. Push changes to NPM |
|
|
|
```bash |
|
$ npm publish |
|
```
|
|
|