carton/.vscode/tasks.json

36 lines
925 B
JSON
Raw Normal View History

2020-05-05 05:31:53 +08:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build and run",
"type": "shell",
"command": "swift build && cd TestApp && ../.build/debug/carton"
},
{
"label": "build and version",
"type": "shell",
"command": "swift build && cd TestApp && ../.build/debug/carton --version"
},
2020-05-05 05:31:53 +08:00
{
"label": "build and run dev",
2020-05-05 05:31:53 +08:00
"type": "shell",
"command": "swift build && cd TestApp && ../.build/debug/carton dev --product TestApp"
},
{
"label": "build and run test",
"type": "shell",
"command": "swift build && cd TestApp && ../.build/debug/carton test"
},
{
"type": "npm",
"script": "build",
"group": "build",
"problemMatcher": [],
"label": "npm: build",
"detail": "webpack"
2020-05-05 05:31:53 +08:00
}
]
}