Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,26 @@
"tasks": [
{
"label": "Build",
"detail": "Build vencord in development mode",
"type": "shell",
"command": "pnpm build",
"command": "pnpm build --dev",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Reporter",
"detail": "Build with the reporter that will test all patches and finds, then report errors to console",
"type": "shell",
"command": "pnpm build --dev --reporter",
"group": {
"kind": "build"
}
},
{
"label": "Watch",
"detail": "Build and watch for changes",
"type": "shell",
"command": "pnpm watch",
"problemMatcher": [],
Expand Down