Files
few-line-engine/.vscode/tasks.json
Boris D fbbbd61838 DB
2025-09-22 18:35:02 +03:00

32 lines
660 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Run case1 test",
"type": "shell",
"command": "npx ts-node tests/base/case1.ts",
"args": [],
"isBackground": false,
"problemMatcher": [],
"group": "build"
},
{
"label": "Generate join table migration",
"type": "shell",
"command": "npm run migration:generate -- src/migrations/query-modules-join",
"args": [],
"isBackground": false,
"problemMatcher": [],
"group": "build"
},
{
"label": "Run DB migrations",
"type": "shell",
"command": "npm run migration:run",
"args": [],
"isBackground": false,
"problemMatcher": [],
"group": "build"
}
]
}