github.com/SAP/cloud-mta-build-tool@v1.2.27/internal/buildtools/testdata/cfg.yaml (about)

     1  builders:
     2  - name: html5
     3    info: "installing module dependencies & execute grunt & remove dev dependencies"
     4    path: "path to config file which override the following default commands"
     5    type:
     6    - command: npm install
     7    - command: grunt
     8    - command: npm prune --production
     9  - name: java
    10    info: "build java application"
    11    path: "path to config file which override the following default commands"
    12    type:
    13    - command: mvn clean install
    14  - name: nodejs
    15    info: "build nodejs application"
    16    path: "path to config file which override the following default commands"
    17    type:
    18    - command: npm install --production
    19  - name: golang
    20    info: "build golang application"
    21    path: "path to config file which override the following default commands"
    22    type:
    23    - command: go build *.go