From 4cfaecd9aa8a51ea1b4a8647d1e14960fdc3825a Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Thu, 17 Dec 2020 15:06:23 +0100 Subject: [PATCH] Add initial Cloud MTA Build Tool support. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .gitignore | 4 ++++ mta.yaml | 20 ++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 mta.yaml diff --git a/.gitignore b/.gitignore index 113248a3..2b4ebbd7 100644 --- a/.gitignore +++ b/.gitignore @@ -82,3 +82,7 @@ Thumbs.db # Winston *-audit.json + +# MTA +*.mta +mta_archives/ diff --git a/mta.yaml b/mta.yaml new file mode 100644 index 00000000..ecb76309 --- /dev/null +++ b/mta.yaml @@ -0,0 +1,20 @@ +ID: ev-simulator +_schema-version: '3.3' +version: 0.0.1 + +build-parameters: + before-all: + - builder: custom + commands: + - npm install + - npm run build:prod + +resources: + - name: dynatrace-service + type: user-provided-service + optional: true + +modules: + - name: ev-simulator + type: nodejs + path: dist -- 2.34.1