# Contributing ## Editing the script If you change `widget.js`, be sure to update the minified copy: ```shell npm install npm run build ``` This will compress the file into `widget.min.js`. ## Releasing As per the [Pallet](https://github.com/infoxchange/pallet) standard, releases must be tagged. Increment the version number as per [SemVer](http://semver.org). As this project is setup slightly different than other static sites, make sure to update the version.txt with the new tag, to have this reflected in dashmat. Also update `package.json` with the version number. ```shell git tag -m v1.0.1 v1.0.1 make push release-prod ```