ci/woodpecker/manual/woodpecker Pipeline was successful
Adapted from tools_build/phaser-tools for the Vite + TypeScript setup: the web bundle comes from npm ci + npm run build instead of source concatenation, otherwise the standard ci-version/ci-export/ci-upload/ ci-update flow applies (platform=phaser). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
29 lines
691 B
JSON
29 lines
691 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Serve",
|
|
"type": "shell",
|
|
"command": "make serve",
|
|
"problemMatcher": [],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "Build Web",
|
|
"type": "shell",
|
|
"command": "make web",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Make build",
|
|
"type": "shell",
|
|
"command": "make build"
|
|
}
|
|
]
|
|
}
|