aboutsummaryrefslogtreecommitdiff
path: root/lib/vnlib.browser/Taskfile.yaml
blob: 4046432dd89738384c39cff9b26c61c70fa602ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# https://taskfile.dev

#Called by the vnbuild system to produce builds for my website
#https://www.vaughnnugent.com/resources/software


#this file must be in the same directory as the solution file

version: '3'

tasks:

#called by build pipeline to build module
  build:
    cmds:
     - echo "building module {{.MODULE_NAME}}" 

    #install dependencies and build
     - npm install
     - npm run build

  postbuild_success:
    cmds:
    - powershell -Command "mkdir bin -Force"
    #tgz the dist folder
    - tar --exclude="./node_modules" --exclude="./src" --exclude="./.git" --exclude="./bin" --exclude=".gitignore" --exclude="*.yaml" --exclude="*.yml" -czf bin/release.tgz .


#called by build pipeline to clean module
  clean:
    ignore_error: true
    cmds:
     #delete dist folder
    - for: ['bin/', 'dist/', 'node_modules/']
      cmd: powershell -Command "Remove-Item -Recurse -Force {{.ITEM_NAME}}"