add vscode tasks
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2026-07-28 18:38:36 +02:00
parent 4312cc0e4d
commit 9a63d7b3f7
+34
View File
@@ -0,0 +1,34 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Run TIC80",
"type": "shell",
"command": "tic80 --fs=. mranderson.lua",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build & Run TIC80",
"type": "shell",
"command": "make clean && make build && tic80 --fs=. mranderson.lua",
"problemMatcher": []
},
{
"label": "Export assets",
"type": "shell",
"command": "make export_assets",
"problemMatcher": []
},
{
"label": "Make build",
"type": "shell",
"command": "make build"
}
]
}