version: '3'
tasks:
bootstrap:
internal: true
cmds:
- . script/bootstrap
dir: frontend
start:
desc: "Starts the frontend application."
deps: [bootstrap]
- yarn start
build:
desc: "Build the app."
- yarn build
test:
desc: "Runs the frontend test suite."
- yarn test
lint:
desc: "Checks lint and formatting."
- yarn lint
lintfix:
desc: "Fixes lint and formatting."
- yarn lint:fix
typecheck:
desc: "Validates types."
- yarn typecheck