Explorar el Código

Use different task groups for the pnpm and bundle tasks (#1576)

So the terminal isn't split 4 ways, making it very hard to see what's happening

Co-authored-by: Chris Hasson <[email protected]>
Chris Hasson hace 6 meses
padre
commit
d7450ebe0a
Se han modificado 1 ficheros con 4 adiciones y 4 borrados
  1. 4 4
      .vscode/tasks.json

+ 4 - 4
.vscode/tasks.json

@@ -22,10 +22,10 @@
 			"type": "shell",
 			"command": "npx",
 			"args": ["nodemon", "--watch", "pnpm-lock.yaml", "--exec", "pnpm install"],
-			"group": "build",
+			"group": "none",
 			"isBackground": true,
 			"presentation": {
-				"group": "watch",
+				"group": "none",
 				"reveal": "always"
 			},
 			"problemMatcher": {
@@ -86,11 +86,11 @@
 			"dependsOn": ["watch:pnpm"],
 			"type": "shell",
 			"command": "npx turbo watch:tsc",
-			"group": "build",
+			"group": "none",
 			"problemMatcher": "$tsc-watch",
 			"isBackground": true,
 			"presentation": {
-				"group": "watch",
+				"group": "none",
 				"reveal": "always"
 			}
 		},