shelf-pack
Version:
A 2D rectangular bin packing data structure that uses the Shelf Best Height Fit heuristic
20 lines (17 loc) • 455 B
Markdown
## Release Checklist
#### Update version, docs, tag, and publish
- [ ] git checkout master
- [ ] npm install
- [ ] Update CHANGELOG
- [ ] Update version number in `package.json`
- [ ] npm run docs
- [ ] git add .
- [ ] git commit -m 'vA.B.C'
- [ ] git tag vA.B.C
- [ ] git push origin master vA.B.C
- [ ] npm publish
#### Push docs to gh-pages
- [ ] git checkout gh-pages
- [ ] git rebase master
- [ ] git push origin gh-pages
- [ ] git checkout master