@scandipwa/magento-scripts 2.0.0-alpha.15 → 2.0.0-alpha.16
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.
|
@@ -86,8 +86,8 @@ const removeLocalVolumes = () => ({
|
|
|
86
86
|
await Promise.all(existingLocalVolumesDetails.map(async (v) => {
|
|
87
87
|
if (v.Containers && Object.entries(v.Containers).length > 0) {
|
|
88
88
|
await Promise.all(Object.values(v.Containers).map(async (c) => {
|
|
89
|
-
await containerApi.stop(c.Name);
|
|
90
|
-
await containerApi.rm(c.Name);
|
|
89
|
+
await containerApi.stop([c.Name]);
|
|
90
|
+
await containerApi.rm([c.Name]);
|
|
91
91
|
}));
|
|
92
92
|
}
|
|
93
93
|
}));
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Scripts and configuration used by CMA.",
|
|
4
4
|
"homepage": "https://docs.create-magento-app.com/",
|
|
5
5
|
"repository": "github:scandipwa/create-magento-app",
|
|
6
|
-
"version": "2.0.0-alpha.
|
|
6
|
+
"version": "2.0.0-alpha.16",
|
|
7
7
|
"main": "./index.js",
|
|
8
8
|
"types": "./typings/index.d.ts",
|
|
9
9
|
"license": "OSL-3.0",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"mysql",
|
|
55
55
|
"scandipwa"
|
|
56
56
|
],
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "04c17be45e2a405c9ae08858de49d3232a5f8037"
|
|
58
58
|
}
|