@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.
- package/assets/android-template.tar.gz +0 -0
- package/assets/capacitor-cordova-android-plugins.tar.gz +0 -0
- package/assets/capacitor-cordova-ios-plugins.tar.gz +0 -0
- package/assets/ios-pods-template.tar.gz +0 -0
- package/assets/ios-spm-template.tar.gz +0 -0
- package/dist/common.js +3 -1
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
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
|
-
|
|
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-
|
|
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)",
|