gameflow-deck/.vscode/tasks.json
Simeon Radivoev 9e4b2a02c1
feat: Made design more responsive
fix: Made blurring server side to help with performance
fix: Fixed shortcut useEffect loop
2026-02-26 00:28:14 +02:00

57 lines
No EOL
1.1 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Run Act",
"type": "shell",
"command": "act",
"args": [
"--artifact-server-path",
"artifacts",
"-W",
".github/workflows/build.yml"
],
"options": {
"env": {
"PATH": "${env:PATH}",
"ACTIONS_RUNTIME_TOKEN": "foo"
},
},
"problemMatcher": []
},
{
"label": "Start Dev",
"type": "shell",
"command": "bun run dev",
"isBackground": true,
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared",
"showReuseMessage": true,
"clear": false
}
},
{
"label": "Start Dev (Hot Reload)",
"type": "shell",
"command": "bun run dev:hmr",
"isBackground": true,
"options": {
"env": {
}
},
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared",
"showReuseMessage": true,
"clear": false
}
}
]
}