wikiploy
Version:
User scripts and gadgets deployment for MediaWiki (Wikipedia).
35 lines • 963 B
JSON
// Requires `gsppvo.vscode-commandbar`.
// Also: in settings (UI), `files.associations`, add `commandbar.json: jsonc` (json with comments).
{
"skipTerminateQuickPick": true,
"skipSwitchToOutput": false,
"skipErrorMessage": true,
"commands": [
// running tests as a task: keeps colors
{
"text": "test",
"tooltip": "Run mocha tests.",
"color": "lightgreen",
"commandType": "palette",
"command": "workbench.action.tasks.runTask|Run tests",
"priority": 0
},
// running npm as a task: progress bar works (not spread over many lines)
{
"text": "npm i",
"tooltip": "NPM install.",
"color": "moccasin",
"commandType": "palette",
"command": "workbench.action.tasks.runTask|npm install",
"priority": 0
},
{
"text": "check_up",
"tooltip": "Check update of main deps.",
"color": "moccasin",
"commandType": "exec",
"command": "php ./check_up.php",
"priority": 0
}
]
}