chore: session auto-commit
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
# Backend service - Discord moderation monitoring
|
||||
language: typescript
|
||||
type: application
|
||||
|
||||
tasks:
|
||||
dev:
|
||||
command: tsx watch src/index.ts
|
||||
local: true
|
||||
|
||||
build:
|
||||
command: tsc
|
||||
inputs:
|
||||
- src
|
||||
- tsconfig.json
|
||||
outputs:
|
||||
- dist
|
||||
|
||||
typecheck:
|
||||
command: tsc --noEmit
|
||||
inputs:
|
||||
- src
|
||||
- tsconfig.json
|
||||
|
||||
lint:
|
||||
command: biome check --diagnostic-level=error .
|
||||
inputs:
|
||||
- src
|
||||
|
||||
format:
|
||||
command: biome format --write .
|
||||
inputs:
|
||||
- src
|
||||
|
||||
test:
|
||||
command: vitest run
|
||||
inputs:
|
||||
- src
|
||||
- tests
|
||||
- tsconfig.json
|
||||
@@ -0,0 +1,39 @@
|
||||
# Discord Gateway service - handles message capture, voice recording, and AI moderation
|
||||
language: typescript
|
||||
type: application
|
||||
|
||||
tasks:
|
||||
dev:
|
||||
command: tsx watch src/index.ts
|
||||
local: true
|
||||
|
||||
build:
|
||||
command: tsc
|
||||
inputs:
|
||||
- src
|
||||
- tsconfig.json
|
||||
outputs:
|
||||
- dist
|
||||
|
||||
typecheck:
|
||||
command: tsc --noEmit
|
||||
inputs:
|
||||
- src
|
||||
- tsconfig.json
|
||||
|
||||
lint:
|
||||
command: biome check --diagnostic-level=error .
|
||||
inputs:
|
||||
- src
|
||||
|
||||
format:
|
||||
command: biome format --write .
|
||||
inputs:
|
||||
- src
|
||||
|
||||
test:
|
||||
command: vitest run
|
||||
inputs:
|
||||
- src
|
||||
- tests
|
||||
- tsconfig.json
|
||||
@@ -0,0 +1,38 @@
|
||||
# Frontend web application
|
||||
language: typescript
|
||||
type: application
|
||||
|
||||
tasks:
|
||||
dev:
|
||||
command: vite --host 0.0.0.0
|
||||
local: true
|
||||
|
||||
build:
|
||||
command: tsc --noEmit && NODE_NO_WARNINGS=1 vite build
|
||||
inputs:
|
||||
- src
|
||||
- tsconfig.json
|
||||
- vite.config.mts
|
||||
- index.html
|
||||
outputs:
|
||||
- dist
|
||||
|
||||
preview:
|
||||
command: vite preview --host 0.0.0.0 --port 3000
|
||||
local: true
|
||||
|
||||
typecheck:
|
||||
command: tsc --noEmit
|
||||
inputs:
|
||||
- src
|
||||
- tsconfig.json
|
||||
|
||||
lint:
|
||||
command: biome check --diagnostic-level=error src/
|
||||
inputs:
|
||||
- src
|
||||
|
||||
format:
|
||||
command: biome format --write src/
|
||||
inputs:
|
||||
- src
|
||||
Reference in New Issue
Block a user