@scandipwa/magento-scripts 1.13.0 → 1.13.1

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.
@@ -18,7 +18,7 @@ const migrateDatabase = (options = {}) => ({
18
18
  } = ctx;
19
19
 
20
20
  const [[{ tableCount }]] = await mysqlConnection.query(`
21
- SELECT count (*) AS tableCount
21
+ SELECT count(*) AS tableCount
22
22
  FROM INFORMATION_SCHEMA.TABLES
23
23
  WHERE TABLE_SCHEMA = 'magento';
24
24
  `);
@@ -10,7 +10,7 @@ const dumpThemeConfig = () => ({
10
10
  * @type {{ tableCount: number }[][]}
11
11
  */
12
12
  const [[{ tableCount }]] = await mysqlConnection.query(`
13
- SELECT count (*) AS tableCount
13
+ SELECT count(*) AS tableCount
14
14
  FROM INFORMATION_SCHEMA.TABLES
15
15
  WHERE TABLE_SCHEMA = 'magento';
16
16
  `);
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": "1.13.0",
6
+ "version": "1.13.1",
7
7
  "main": "./index.js",
8
8
  "types": "./typings/index.d.ts",
9
9
  "license": "OSL-3.0",
@@ -42,5 +42,5 @@
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "ea9caf4db8672b0cf197e49cd4c9002eea84a113"
45
+ "gitHead": "8a4b7628f8182c5009da3fed99662d6ca83117e7"
46
46
  }