codeplay-common 3.2.7 → 3.2.8

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.
@@ -159,6 +159,13 @@ function updateIOSVersion(versionCode, versionName) {
159
159
 
160
160
  const pbxprojPath = join("ios", "App", "App.xcodeproj", "project.pbxproj");
161
161
 
162
+ // 🔥 Single check only
163
+ if (!existsSync(pbxprojPath)) {
164
+ console.warn("⚠️ iOS project not found, skipping version update");
165
+ return;
166
+ }
167
+
168
+
162
169
  let content = readFileSync(pbxprojPath, 'utf8');
163
170
 
164
171
  // Update MARKETING_VERSION
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeplay-common",
3
- "version": "3.2.7",
3
+ "version": "3.2.8",
4
4
  "description": "Common build scripts and files",
5
5
  "scripts": {
6
6
  "postinstall": "node scripts/sync-files.js",