Files
PiliPlus/.vscode/tasks.json
bggRGjQaUbCoE ec37af5900 fix #1439
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-10-03 16:17:33 +08:00

25 lines
647 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Update build_config",
"command": "dart lib/scripts/build.dart dev",
"type": "shell",
"problemMatcher": [],
"presentation": {
"reveal": "always"
},
"group": "build"
},
{
"label": "Update build_config (FVM)",
"command": "fvm dart lib/scripts/build.dart dev",
"type": "shell",
"problemMatcher": [],
"presentation": {
"reveal": "always"
},
"group": "build"
}
]
}