From f0d91ad12e3a01118357b0cbf2aabbcd7464028f Mon Sep 17 00:00:00 2001 From: vnugent Date: Wed, 24 Jul 2024 18:25:07 -0400 Subject: chore: package updates & compose build --- front-end/Taskfile.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'front-end/Taskfile.yaml') diff --git a/front-end/Taskfile.yaml b/front-end/Taskfile.yaml index 9e2e28f..5ac845e 100644 --- a/front-end/Taskfile.yaml +++ b/front-end/Taskfile.yaml @@ -5,6 +5,11 @@ version: '3' tasks: + package-update: + dir: '{{.USER_WORKING_DIR}}' + cmds: + - npm update + build: cmds: #install deps and run build @@ -21,7 +26,7 @@ tasks: clean: ignore_error: true cmds: - - cmd: powershell -Command "Remove-Item -Recurse -Force node_modules" - - cmd: powershell -Command "Remove-Item -Recurse -Force dist" - - cmd: powershell -Command "Remove-Item -Recurse -Force bin" + - for: [ node_modules/, dist/, bin/ ] + cmd: powershell -Command "Remove-Item -Recurse -Force {{.ITEM}}" + - cmd: powershell -Command "Remove-Item release.tgz" \ No newline at end of file -- cgit