@capacitor/cli 3.2.3 → 3.2.4

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.2.4](https://github.com/ionic-team/capacitor/compare/3.2.3...3.2.4) (2021-09-27)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **cli:** await sync on add to avoid telemetry hang ([833bc20](https://github.com/ionic-team/capacitor/commit/833bc20525a2558e03cd0e56c6765ce6828cdfac))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [3.2.3](https://github.com/ionic-team/capacitor/compare/3.2.2...3.2.3) (2021-09-15)
7
18
 
8
19
 
Binary file
Binary file
package/dist/tasks/add.js CHANGED
@@ -55,7 +55,7 @@ async function addCommand(config, selectedPlatformName) {
55
55
  await doAdd(config, platformName);
56
56
  await editPlatforms(config, platformName);
57
57
  if (await utils_fs_1.pathExists(config.app.webDirAbs)) {
58
- sync_1.sync(config, platformName, false);
58
+ await sync_1.sync(config, platformName, false);
59
59
  }
60
60
  else {
61
61
  log_1.logger.warn(`${colors_1.default.success(colors_1.default.strong('sync'))} could not run--missing ${colors_1.default.strong(config.app.webDir)} directory.`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/cli",
3
- "version": "3.2.3",
3
+ "version": "3.2.4",
4
4
  "description": "Capacitor: Cross-platform apps with JavaScript and the web",
5
5
  "homepage": "https://capacitorjs.com",
6
6
  "author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
@@ -85,5 +85,5 @@
85
85
  "publishConfig": {
86
86
  "access": "public"
87
87
  },
88
- "gitHead": "17bc41fa2e03f29016c8e48de1a6d68510a9f83b"
88
+ "gitHead": "81a43b1ce2096c4c6666fe06c5b20a87a01d1949"
89
89
  }