Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 815 Bytes

HOW_TO_RELEASE.md

File metadata and controls

44 lines (32 loc) · 815 Bytes

How To Release ?

# Update following files:
CHANGELOG.md
three.js/src/threex/threex-artoolkitcontext.js
three.js/src/threex/threex-artoolkitcontext-nft.js
package.json
README.md

# Build everything - aka a-frame and three.js
make build
cd aframe
make build-location-only
cd ..

# Commit everything
git add . && git commit -a -m 'Last commit before release' && git push

# Go to master branch
git checkout master

# Merge dev branch into master branch
git merge dev

# tag the release
git tag <tag>

# push the tag on github
git push origin --tags

# push commits tag on github
git push

# publish on NPM (only if have proper credentials)
npm publish

# Come back to dev branch
git checkout dev


# update the a-frame codepen if needed
open "https://codepen.io/jeromeetienne/pen/mRqqzb?editors=1000#0"