mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-04-13 15:27:16 +03:00
53 lines
1.5 KiB
JSON
53 lines
1.5 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build Raw",
|
|
"type": "shell",
|
|
"command": "python ./build.py --nominify --copytracker",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "shared",
|
|
"echo": true,
|
|
"focus": false,
|
|
"showReuseMessage": false
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Build Minified",
|
|
"type": "shell",
|
|
"command": "python ./build.py --copytracker",
|
|
"group": "build",
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "shared",
|
|
"echo": true,
|
|
"focus": false,
|
|
"showReuseMessage": false
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Build Website",
|
|
"type": "shell",
|
|
"command": "python ./build.py --website",
|
|
"group": "build",
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "shared",
|
|
"echo": true,
|
|
"focus": false,
|
|
"showReuseMessage": false
|
|
},
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
}
|