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

28 lines
499 B
YAML
Raw Normal View History

2026-05-22 12:25:41 +00:00
type: application
language: typescript
tasks:
dev:
command: bun run dev
local: true
build:
command: bun build src/index.ts --outdir dist --target bun
2026-05-22 12:28:54 +00:00
deps:
- shared:build
2026-05-22 12:25:41 +00:00
inputs:
- src/**/*
- package.json
- tsconfig.json
- drizzle.config.ts
outputs:
- dist
typecheck:
command: bun run typecheck
2026-05-22 12:28:54 +00:00
deps:
- shared:typecheck
2026-05-22 12:25:41 +00:00
inputs:
- src/**/*
- package.json
- tsconfig.json
- drizzle.config.ts