github.com/SAP/cloud-mta-build-tool@v1.2.27/internal/tpl/testdata/modulegen/dep_with_artifacts_and_targetpath.yaml (about)

     1  ID: testmta
     2  _schema-version: '3.2'
     3  version: 1.0.0
     4  
     5  modules:
     6    - name: module1
     7      type: html5
     8      path: public
     9      provides:
    10        - name: module1_feature
    11          public: true
    12      build-parameters:
    13        builder: npm
    14        ignore: [".che/", ".npmrc"]
    15        timeout: 15m
    16        requires:
    17          - name: module1-dep
    18            artifacts: ["dist/*"]
    19            target-path: "client"
    20    - name: module1-dep
    21      type: html5
    22      path: client
    23      build-parameters:
    24        builder: custom
    25        commands:
    26          - npm install
    27          - npm prune --production
    28        timeout: 15m
    29        supported-platforms: []