21 lines
632 B
JSON
21 lines
632 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "sync-web-assets",
|
|
"type": "shell",
|
|
"command": "powershell",
|
|
"args": [
|
|
"-NoProfile",
|
|
"-Command",
|
|
"New-Item -ItemType Directory -Force -Path '${workspaceFolder}\\web\\assets' | Out-Null; Copy-Item -Force '${workspaceFolder}\\..\\web\\index.html' '${workspaceFolder}\\web\\assets\\index.html'"
|
|
],
|
|
"presentation": {
|
|
"reveal": "silent",
|
|
"panel": "dedicated"
|
|
},
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
}
|