platform/.vscode/tasks.json

27 lines
647 B
JSON
Raw Normal View History

2016-12-21 19:06:09 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "pub",
"isShellCommand": true,
"echoCommand": true,
"showOutput": "always",
"tasks": [
{
"taskName": "pub:build",
"suppressTaskName": true,
"args": [
"build"
]
},
{
"taskName": "pub:serve",
2017-02-19 13:03:11 +00:00
"showOutput": "silent",
2016-12-21 19:06:09 +00:00
"suppressTaskName": true,
2017-02-13 00:07:44 +00:00
"isBackground": true,
2016-12-21 19:06:09 +00:00
"args": [
"serve"
]
}
]
}