web - support tasks in "yarn web"

This commit is contained in:
Benjamin Pasero
2019-11-05 15:45:06 +01:00
parent 90ca98af02
commit 4de0e4d27a
2 changed files with 410 additions and 256 deletions

View File

@@ -44,7 +44,25 @@
"editor.lineNumbers": "off",
"editor.tabSize": 2
}
}
},
"taskDefinitions": [
{
"type": "custombuildscript",
"required": [
"flavor"
],
"properties": {
"flavor": {
"type": "string",
"description": "The build flavor. Should be either '32' or '64'."
},
"flags": {
"type": "array",
"description": "Additional build flags."
}
}
}
]
},
"scripts": {
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",