Files
zeavis-edu/apps/web/moon.yml
T

34 lines
610 B
YAML

type: application
language: typescript
tasks:
dev:
command: bun run dev
local: true
build:
command: bun run build
deps:
- shared:build
inputs:
- src/**/*
- index.html
- package.json
- tsconfig.json
- tsconfig.node.json
- vite.config.ts
- tailwind.config.ts
- postcss.config.js
outputs:
- dist
typecheck:
command: bun run typecheck
deps:
- shared:typecheck
inputs:
- src/**/*
- package.json
- tsconfig.json
- tsconfig.node.json
- vite.config.ts
- tailwind.config.ts