mbt 1.2.18 → 1.2.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -14
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -44,21 +44,9 @@ For convenience the `mbt` executable is available via npmjs.com so consumers usi
|
|
|
44
44
|
It is also possible to download and "install" the `mbt` executable via github releases.
|
|
45
45
|
- See: https://github.com/SAP/cloud-mta-build-tool/releases.
|
|
46
46
|
|
|
47
|
-
#### The Cloud MTA Build Tool Images
|
|
47
|
+
#### The Cloud MTA Build Tool Images
|
|
48
48
|
|
|
49
|
-
The Cloud MTA Build Tool published docker images on docker hub with a pre
|
|
50
|
-
These images are **no longer updated** and consumers are expected to create their own docker images (if necessary...).
|
|
51
|
-
|
|
52
|
-
This is because as a general purpose build orchestration tool MBT **cannot** and **should not** manage all the possible
|
|
53
|
-
build environments for its consumers as every consumer may have a different set of build "targets" and environment settings.
|
|
54
|
-
|
|
55
|
-
For reference, you may inspect the deprecated `dockerFiles`:
|
|
56
|
-
- [Pure Alpine](https://github.com/SAP/cloud-mta-build-tool/blob/42bed9a0f36de43f7575a3a743e2ba9c2449d975/Dockerfile_mbtci_alpine)
|
|
57
|
-
- [Java8 + NodeJS wildcard](https://github.com/SAP/cloud-mta-build-tool/blob/42bed9a0f36de43f7575a3a743e2ba9c2449d975/Dockerfile_mbtci_java8)
|
|
58
|
-
- [Java11 + NodeJS wildcard](https://github.com/SAP/cloud-mta-build-tool/blob/42bed9a0f36de43f7575a3a743e2ba9c2449d975/Dockerfile_mbtci_java11))
|
|
59
|
-
|
|
60
|
-
The Pure Alpine sample is of particular interest as it demonstrates [a simple way](https://github.com/SAP/cloud-mta-build-tool/blob/42bed9a0f36de43f7575a3a743e2ba9c2449d975/Dockerfile_mbtci_alpine#L8-L11)
|
|
61
|
-
to download, extract, "install" the `mbt` executable via `curl`, `tar` and `chown` commands.
|
|
49
|
+
The Cloud MTA Build Tool published docker images on docker hub with a pre-configured set of runtime tools (nodejs/java/maven/...).
|
|
62
50
|
|
|
63
51
|
##### License
|
|
64
52
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mbt",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.20",
|
|
4
4
|
"description": "[](https://circleci.com/gh/SAP/cloud-mta-build-tool) [](https://goreportcard.com/report/github.com/SAP/cloud-mta-build-tool) [](https://coveralls.io/github/SAP/cloud-mta-build-tool?branch=cover)  ",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"homepage": "https://github.com/SAP/cloud-mta-build-tool#readme",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"binwrap": "0.2.
|
|
32
|
+
"binwrap": "0.2.3"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"npm-run-all": "4.1.5"
|