refactor(DIS-108): extract DB schema to src/db/schema.sql (SSOT) #50
1 changed files with 2 additions and 2 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue