refactor(DIS-108): extract DB schema to src/db/schema.sql (SSOT) #50

Merged
dev merged 2 commits from phase-1/db-schema-ssot into main 2026-04-09 16:01:49 +00:00
Showing only changes of commit aeb4bd5b59 - Show all commits

View file

@ -4,9 +4,9 @@
"description": "Discord-bot-powered multi-agent workspace manager built on Claude Code",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build": "tsc && node -e \"require('fs').cpSync('src/db/schema.sql', 'dist/db/schema.sql')\"",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"dev": "tsc && node -e \"require('fs').cpSync('src/db/schema.sql', 'dist/db/schema.sql')\" && node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",