Before creating a pull request, be sure that tests are not failing, and that the performance did not degrade (unless there is a very good reason for the slow down).
Git clone the repo and run npm install (the install will be heavier than that of the published package because of dev dependencies)
If you want to be sure that you have the necessary node version installed, use Volta:
curl https://get.volta.sh | bashMore details here: https://volta.sh/
npm run testThis will also create coverage
npm run benchmarkThis will also create screenshots of the benchmarks and will copy the same files into the docs folder.
If you want to only run benchmarks and nothing else:
npm run benchmark:onlyIf you want to try the library into the browser, create a copy of src/dev.example.ts and rename it src/dev.ts (this file will be gitignored)
Then to run it:
npm run dev