@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
  }));
@@ -89,7 +89,7 @@ const rm = async (options, execOptions = {}) => {
89
89
  */
90
90
  const inspect = async (options, execOptions = {}) => {
91
91
  const {
92
- image: volume,
92
+ volume,
93
93
  format,
94
94
  formatToJSON = false
95
95
  } = options;
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.15",
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": "df32030f4809af581a3ff909f215d31f74bc0207"
57
+ "gitHead": "04c17be45e2a405c9ae08858de49d3232a5f8037"
58
58
  }