1
0
mirror of https://github.com/chylex/Transparent-Twitch-Chat.git synced 2025-04-24 17:15:48 +02:00

Add a VS Code task to trigger a build

This commit is contained in:
chylex 2018-08-03 16:47:15 +02:00
parent d2cf479640
commit 6301f599a2
2 changed files with 23 additions and 1 deletions

23
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,23 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build Userscript",
"type": "shell",
"command": "python ./BUILD.py",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "dedicated",
"echo": true,
"focus": true,
"showReuseMessage": false
}
}
]
}

View File

@ -1 +0,0 @@
python build.py