Skip to content

Commit

Permalink
Add "Format all" task and simplify build task (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
IRHM authored Mar 14, 2021
1 parent 38dc623 commit a3eb76e
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,18 @@
"version": "2.0.0",
"tasks": [
{
"label": "Run",
"dependsOn": ["Run Client App"],
"dependsOrder": "sequence",
"label": "Serve app",
"command": "npm run electron:serve",
"type": "shell",
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$msCompile",
"isBackground": true
}
},
{
"label": "Run Client App",
"command": "npm run electron:serve",
"label": "Format all",
"command": "npm run prettier:formatall",
"type": "shell",
"problemMatcher": "$msCompile"
}
Expand Down

0 comments on commit a3eb76e

Please sign in to comment.