@capacitor/cli 7.6.1 → 7.6.2

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/config.js CHANGED
@@ -351,6 +351,9 @@ async function determinePackageManager(rootDir, platformDir, nativeProjectDirAbs
351
351
  if ((0, fs_extra_1.existsSync)((0, path_1.resolve)(nativeProjectDirAbs, 'CapApp-SPM'))) {
352
352
  return 'SPM';
353
353
  }
354
+ if (process.env.CAPACITOR_COCOAPODS_PATH) {
355
+ return 'Cocoapods';
356
+ }
354
357
  let gemfilePath = '';
355
358
  if (await (0, fs_extra_1.pathExists)((0, path_1.resolve)(rootDir, 'Gemfile'))) {
356
359
  gemfilePath = (0, path_1.resolve)(rootDir, 'Gemfile');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/cli",
3
- "version": "7.6.1",
3
+ "version": "7.6.2",
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)",