chore: revert taskfile change

Carlos Alexandro Becker created

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>

Change summary

Taskfile.yaml | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)

Detailed changes

Taskfile.yaml 🔗

@@ -4,7 +4,6 @@ version: "3"
 
 env:
   CGO_ENABLED: 0
-  TEA_DEBUG: 1
   GOEXPERIMENT: greenteagc
 
 tasks:
@@ -38,8 +37,6 @@ tasks:
 
   run:
     desc: Run build
-    env:
-      CRUSH_PROFILE: true
     cmds:
       - go run . {{.CLI_ARGS}}
 
@@ -53,6 +50,13 @@ tasks:
     cmds:
       - gofumpt -w .
 
+  dev:
+    desc: Run with profiling enabled
+    env:
+      CRUSH_PROFILE: true
+    cmds:
+      - go run .
+
   install:
     desc: Install the application
     cmds: