@capacitor/cli 8.0.0-nightly-20251203T150747.0 → 8.0.0-nightly-20251205T150637.0

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
package/dist/common.js CHANGED
@@ -429,7 +429,9 @@ async function checkJDKMajorVersion() {
429
429
  }
430
430
  exports.checkJDKMajorVersion = checkJDKMajorVersion;
431
431
  function parseApkNameFromFlavor(flavor) {
432
- const convertedName = flavor.replace(/([A-Z])/g, '$1').toLowerCase();
432
+ let convertedName = flavor.replace(/([A-Z])/g, '-$1').toLowerCase();
433
+ if (convertedName.startsWith('-'))
434
+ convertedName = convertedName.replace('-', '');
433
435
  return `app-${convertedName ? `${convertedName}-` : ''}debug.apk`;
434
436
  }
435
437
  exports.parseApkNameFromFlavor = parseApkNameFromFlavor;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/cli",
3
- "version": "8.0.0-nightly-20251203T150747.0",
3
+ "version": "8.0.0-nightly-20251205T150637.0",
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)",