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