Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 839 Bytes

File metadata and controls

33 lines (23 loc) · 839 Bytes

How to release

To make a release:

  • Make sure you have the latest changes on main:

    git checkout main && git pull origin main
  • Build the artifacts with:

    npm run build
  • Package the artifacts with the readme and license:

    tar -czvf gedusim.tar.gz examples/* dist/* README.md LICENSE
  • Create a new GitHub release with the packaged artifacts.

  • Add information on how to run the release:

    To serve the files locally:

    1. Download the compiled artifacts (gedusim.tar.gz).
    2. Extract the artifacts with tar -xzf gedusim.tar.gz.
    3. Serve the files under dist/ through a web server, (i.e. http-server).

    You'll now be able to use the simulator locally by going to http://localhost:8080