@capacitor/cli 7.6.3 → 7.6.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/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/ios/update.js +1 -1
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/ios/update.js
CHANGED
|
@@ -504,7 +504,7 @@ async function copyPluginsNativeFiles(config, cordovaPlugins) {
|
|
|
504
504
|
const isSPM = (await config.ios.packageManager) === 'SPM';
|
|
505
505
|
for (const p of cordovaPlugins) {
|
|
506
506
|
const platformTag = (0, plugin_1.getPluginPlatform)(p, platform);
|
|
507
|
-
if ((_a = platformTag.$) === null || _a === void 0 ? void 0 : _a.package) {
|
|
507
|
+
if (isSPM && ((_a = platformTag.$) === null || _a === void 0 ? void 0 : _a.package)) {
|
|
508
508
|
continue;
|
|
509
509
|
}
|
|
510
510
|
const sourceFiles = (0, plugin_1.getPlatformElement)(p, platform, 'source-file');
|
package/package.json
CHANGED