Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 870 Bytes

development.md

File metadata and controls

38 lines (26 loc) · 870 Bytes

Notes

Init

  • npm install
  • lerna bootstrap

Run demo in development mode

In one terminal

  • cd packages/core
  • npm run build -- -w

In another terminal

  • cd packages/demo
  • npm run serve-dev starts the webpack server

Run demo build

  • lerna run build all static files are created now
  • lerna run serve-build to spawn a simple webserver
  • go to http://localhost:9032/yode

Release

  • git checkout master
  • git merge --no-ff develop
  • git push
  • check travis build status
  • lerna publish
  • github_changelog_generator
  • commit changelog and push
  • draft release at release page with content from changelog
  • git checkout develop && git merge --no-ff master && git push