aboutsummaryrefslogtreecommitdiff
path: root/lib/Taskfile.yaml
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-06-05 15:58:07 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-06-05 15:58:07 -0400
commit21d2719701f851d4a555c363b141f289f14a5192 (patch)
treea885343da2ea8fe7afa6defc118066adc0c26a85 /lib/Taskfile.yaml
parenteefba88ac4e2c70517aa71c79ed94c346f9de554 (diff)
fix: #1 new channel page when hitting new button
Diffstat (limited to 'lib/Taskfile.yaml')
-rw-r--r--lib/Taskfile.yaml6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/Taskfile.yaml b/lib/Taskfile.yaml
index e2989c2..6b8eb17 100644
--- a/lib/Taskfile.yaml
+++ b/lib/Taskfile.yaml
@@ -25,7 +25,5 @@ tasks:
dir: '{{.USER_WORKING_DIR}}'
ignore_error: true
cmds:
- - cmd: powershell -Command "Remove-Item -Recurse node_modules"
- - cmd: powershell -Command "Remove-Item -Recurse dist"
- - cmd: powershell -Command "Remove-Item -Recurse -Force bin"
- - cmd: powershell -Command "Remove-Item release.tgz" \ No newline at end of file
+ - for: [node_modules/, dist/, bin/]
+ cmd: powershell -Command "Remove-Item -Recurse -Force {{.ITEM}}"