datamations/.vscode/tasks.json

39 строки
798 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build",
"path": "inst/htmlwidgets/js/src/",
"group": "build",
"problemMatcher": [],
"label": "npm: build - inst/htmlwidgets/js/src",
"detail": "rollup -c"
},
{
"type": "npm",
"script": "test",
"path": "inst/htmlwidgets/js/src/",
"group": {
"kind": "test",
"isDefault": true
},
"problemMatcher": [],
"label": "npm: test - inst/htmlwidgets/js/src",
"detail": "mocha"
},
{
"type": "npm",
"script": "dev",
"path": "inst/htmlwidgets/js/src",
"problemMatcher": [],
"label": "npm: dev - inst/htmlwidgets/js/src",
"detail": "rollup -c -w",
"presentation": {
"clear": true,
"panel": "dedicated"
},
"runOptions": { "runOn": "folderOpen" }
}
]
}