Skip to content
This repository has been archived by the owner on Mar 14, 2023. It is now read-only.

Latest commit

 

History

History
51 lines (32 loc) · 743 Bytes

DEVELOPMENT.md

File metadata and controls

51 lines (32 loc) · 743 Bytes

Development

Start

npm install
npm start

Goto

 

Release

‼️ Mind the license comment in .babelrc which will be written to the final js.file!

Howto Publish to npmjs.org

(0) Have it build and no pending commits

npm install
npm run build

(1) use this because of npm proxy:

npm --registry https://registry.npmjs.org/ login
npm --registry https://registry.npmjs.org/ publish

(2) Create Git Tag

git tag -a 0.0.15 -m "rel 0.0.15"
git push origin 0.0.15

(3) Go to github releases and create release from tag.

(4) Increase version in package.json.

git add . -A && git commit -m "version bump" && git push