@capacitor/cli 7.6.5 → 7.6.6

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.
Binary file
Binary file
Binary file
@@ -502,7 +502,7 @@ export interface CapacitorConfig {
502
502
  * Configure the local scheme on Android.
503
503
  *
504
504
  * Custom schemes on Android are unable to change the URL path as of Webview 117. Changing this value from anything other than `http` or `https` can result in your
505
- * application unable to resolve routing. If you must change this for some reason, consider using a hash-based url strategy, but there are no guarentees that this
505
+ * application unable to resolve routing. If you must change this for some reason, consider using a hash-based url strategy, but there are no guarantees that this
506
506
  * will continue to work long term as allowing non-standard schemes to modify query parameters and url fragments is only allowed for compatibility reasons.
507
507
  * https://ionic.io/blog/capacitor-android-customscheme-issue-with-chrome-117
508
508
  *
package/dist/tasks/run.js CHANGED
@@ -85,6 +85,9 @@ async function runCommand(config, selectedPlatformName, options) {
85
85
  }
86
86
  }
87
87
  catch (e) {
88
+ if (options.liveReload) {
89
+ await livereload_1.CapLiveReloadHelper.revertCapConfigForLiveReload();
90
+ }
88
91
  if (!(0, errors_1.isFatal)(e)) {
89
92
  (0, errors_1.fatal)((_c = e.stack) !== null && _c !== void 0 ? _c : e);
90
93
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/cli",
3
- "version": "7.6.5",
3
+ "version": "7.6.6",
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)",