aboutsummaryrefslogtreecommitdiff
path: root/lib/Taskfile.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Taskfile.yaml')
-rw-r--r--lib/Taskfile.yaml11
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/Taskfile.yaml b/lib/Taskfile.yaml
index e2989c2..fac7f36 100644
--- a/lib/Taskfile.yaml
+++ b/lib/Taskfile.yaml
@@ -8,9 +8,12 @@ tasks:
build:
dir: '{{.USER_WORKING_DIR}}'
cmds:
+
+ - cmd: npm version {{ .BUILD_VERSION }}
+ ignore_error: true #error if run when version is not updated
#install deps and run build
+ - npm version
- npm install
- - npm run build
#copy artifacts to temp directory
postbuild_success:
@@ -25,7 +28,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}}"