@capacitor/cli 5.7.4 → 5.7.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
package/dist/common.js CHANGED
@@ -392,7 +392,7 @@ async function checkJDKMajorVersion() {
392
392
  }
393
393
  exports.checkJDKMajorVersion = checkJDKMajorVersion;
394
394
  function parseApkNameFromFlavor(flavor) {
395
- const convertedName = flavor.replace(/([A-Z])/g, '-$1').toLowerCase();
395
+ const convertedName = flavor.replace(/([A-Z])/g, '$1').toLowerCase();
396
396
  return `app-${convertedName ? `${convertedName}-` : ''}debug.apk`;
397
397
  }
398
398
  exports.parseApkNameFromFlavor = parseApkNameFromFlavor;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/cli",
3
- "version": "5.7.4",
3
+ "version": "5.7.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)",