- More string keys - Reworked string keys entirely - Moved formatting into seperate typescript module - Write unit tests using `jest` for the format module - README improvements Pirate language needs to be reworked and it should be a bit less painful now to actually add more string keys later on (eventually making the whole webapp strings lie inside the stringkeys)
629 B
629 B
CollabVM 1.2 Webapp 2.0
The CollabVM Web App is the viewer for the CollabVM Server.
Building
Edit Config.ts to your needs, then:
yarn
yarnyarn build
npm
npm inpm run build
The build output directory is dist/.
Unit testing
This is very minimal and only tests a single standalone part at the moment:
yarn test
Serving
Just drop the contents of dist/ somewhere into your webroot.
For testing or development purposes only, you can throw up a quick test webserver with the following command:
yarn
yarn serve
npm
npm run serve
