mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-09 22:05:57 +00:00
468e69d76e
Allow debugging of session-tests and improve VS Code debug tasks. New VS Code task to download and start server for debugging New VS Code tasks to build only changed files and full rebuild
34 lines
1.0 KiB
JSON
34 lines
1.0 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "0.1.0",
|
|
"tasks": [
|
|
{
|
|
"taskName": "Rebuild Node Tests",
|
|
"command": "npm",
|
|
"isShellCommand": true,
|
|
"showOutput": "always",
|
|
"suppressTaskName": true,
|
|
"args": ["run", "rebuild-changes"],
|
|
"isBuildCommand": false
|
|
},
|
|
{
|
|
"taskName": "Build Node Tests",
|
|
"command": "npm",
|
|
"isShellCommand": true,
|
|
"showOutput": "always",
|
|
"suppressTaskName": true,
|
|
"args": ["run", "build-changes"],
|
|
"isBuildCommand": true
|
|
},
|
|
{
|
|
"taskName": "Download and Start Server",
|
|
"command": "${workspaceRoot}/scripts/download_and_start_server.sh",
|
|
"isShellCommand": true,
|
|
"showOutput": "always",
|
|
"echoCommand": true,
|
|
"isBackground": true,
|
|
"suppressTaskName": true
|
|
}
|
|
]
|
|
} |