This is a mono-repo for the @augment-vir
packages on npm.
- clone the repo
npm i
: install dependenciesnpm run compile
: build all packages (this is often necessary before doing anything else because the packages depend on each other's built outputs)
- make change
- if change is in a package outside of the one being tested, run
npm run compile
in the repo root - run
npm test
in the package to be tested (or in the repo root to run all tests) - run
npm run test:all
to test everything (including formatting and spelling).