@capacitor/ios 6.0.0-alpha.1 → 6.0.0-alpha.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/ios",
3
- "version": "6.0.0-alpha.1",
3
+ "version": "6.0.0-alpha.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)",
@@ -26,7 +26,7 @@
26
26
  "xc:build:xcframework": "scripts/build.sh xcframework"
27
27
  },
28
28
  "peerDependencies": {
29
- "@capacitor/core": "^6.0.0-alpha.1"
29
+ "@capacitor/core": "^6.0.0-alpha.2"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public"
@@ -7,12 +7,6 @@ def assertDeploymentTarget(installer)
7
7
  if should_upgrade
8
8
  config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
9
9
  end
10
- # workaround for Xcode 15 and Cocoapods 1.21.1
11
- # Should not be needed after Cocoapods 1.13.0
12
- xcconfig_path = config.base_configuration_reference.real_path
13
- xcconfig = File.read(xcconfig_path)
14
- xcconfig_mod = xcconfig.gsub(/DT_TOOLCHAIN_DIR/, "TOOLCHAIN_DIR")
15
- File.open(xcconfig_path, "w") { |file| file << xcconfig_mod }
16
10
  end
17
11
  end
18
12
  end