virmator
v4.2.3 automation template vir formatting spellcheck config
test
bash src/scripts/run-tests.sh
format
npm run format:base -- --write --list-different
compile
rm -rf dist && tsc
test:all
npm run test && npm run spellcheck -- --no-progress && npm run test:format && npm run readme:check
test:help
ts-node -r tsconfig-paths/register src/cli/cli.ts --help
spellcheck
cspell "{*,.*,**/{.*,*}/**/{.*,*}}" --exclude "test-files/spellcheck/invalid-spellcheck-repo/**/*" --exclude "extender-configs"
test:types
tsc --noEmit
format:base
prettier "./**/*.+(ts|json|html|css|md|js)"
test:format
npm run format:base -- --check
readme:check
npm run compile && ts-node -r tsconfig-paths/register src/scripts/save-help-message.ts check && md-code --check README.md
readme:update
npm run compile && ts-node -r tsconfig-paths/register src/scripts/save-help-message.ts && md-code README.md
prepublishOnly
npm run test:all