@nativescript/ios 8.5.2-alpha.3 → 8.5.2-next.2023-05-05-4897411195
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/framework/__PROJECT_NAME__.xcodeproj/project.pbxproj +0 -4
- package/framework/internal/XCFrameworks.zip +0 -0
- package/framework/internal/metadata-generator-arm64/bin/objc-metadata-generator +0 -0
- package/framework/internal/metadata-generator-x86_64/bin/objc-metadata-generator +0 -0
- package/framework/internal/nativescript-build.xcconfig +4 -1
- package/package.json +6 -3
|
@@ -349,7 +349,6 @@
|
|
|
349
349
|
SUPPORTS_UIKITFORMAC = YES;
|
|
350
350
|
SWIFT_OBJC_BRIDGING_HEADER = "$SRCROOT/internal/Swift-ObjC-Bridging-Header.h";
|
|
351
351
|
SWIFT_VERSION = 4.2;
|
|
352
|
-
TARGETED_DEVICE_FAMILY = "1,2";
|
|
353
352
|
};
|
|
354
353
|
name = Debug;
|
|
355
354
|
};
|
|
@@ -402,7 +401,6 @@
|
|
|
402
401
|
SUPPORTS_UIKITFORMAC = YES;
|
|
403
402
|
SWIFT_OBJC_BRIDGING_HEADER = "$SRCROOT/internal/Swift-ObjC-Bridging-Header.h";
|
|
404
403
|
SWIFT_VERSION = 4.2;
|
|
405
|
-
TARGETED_DEVICE_FAMILY = "1,2";
|
|
406
404
|
VALIDATE_PRODUCT = YES;
|
|
407
405
|
};
|
|
408
406
|
name = Release;
|
|
@@ -432,7 +430,6 @@
|
|
|
432
430
|
"@executable_path/Frameworks",
|
|
433
431
|
);
|
|
434
432
|
PRODUCT_NAME = __PROJECT_NAME__;
|
|
435
|
-
TARGETED_DEVICE_FAMILY = "1,2";
|
|
436
433
|
WRAPPER_EXTENSION = app;
|
|
437
434
|
};
|
|
438
435
|
name = Debug;
|
|
@@ -458,7 +455,6 @@
|
|
|
458
455
|
"@executable_path/Frameworks",
|
|
459
456
|
);
|
|
460
457
|
PRODUCT_NAME = __PROJECT_NAME__;
|
|
461
|
-
TARGETED_DEVICE_FAMILY = "1,2";
|
|
462
458
|
WRAPPER_EXTENSION = app;
|
|
463
459
|
};
|
|
464
460
|
name = Release;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -23,4 +23,7 @@ EXCLUDED_ARCHS_x86_64 = arm64 arm64e
|
|
|
23
23
|
EXCLUDED_ARCHS[sdk=iphonesimulator*] = i386 armv6 armv7 armv7s armv8 $(EXCLUDED_ARCHS_$(NATIVE_ARCH_64_BIT))
|
|
24
24
|
EXCLUDED_ARCHS[sdk=iphoneos*] = i386 armv6 armv7 armv7s armv8 x86_64
|
|
25
25
|
EXCLUDED_ARCHS[sdk=macosx*] = i386 armv6 armv7 armv7s armv8
|
|
26
|
-
VALIDATE_WORKSPACE = YES
|
|
26
|
+
VALIDATE_WORKSPACE = YES
|
|
27
|
+
|
|
28
|
+
// Default value (can be overriden by user's build.xcconfig)
|
|
29
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nativescript/ios",
|
|
3
3
|
"description": "NativeScript Runtime for iOS",
|
|
4
|
-
"version": "8.5.2-
|
|
4
|
+
"version": "8.5.2-next.2023-05-05-4897411195",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"NativeScript",
|
|
7
7
|
"iOS",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
],
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
12
|
-
"url": "https://github.com/NativeScript/
|
|
12
|
+
"url": "https://github.com/NativeScript/ios"
|
|
13
13
|
},
|
|
14
14
|
"author": {
|
|
15
15
|
"name": "NativeScript Team",
|
|
@@ -24,11 +24,14 @@
|
|
|
24
24
|
"build-v8-source": "./build_v8_source.sh",
|
|
25
25
|
"build-v8-source-catalyst": "./build_v8_source_catalyst.sh",
|
|
26
26
|
"build": "./build_all.sh",
|
|
27
|
+
"setup-ci": "./build_metadata_generator.sh",
|
|
27
28
|
"update-version": "./update_version.sh",
|
|
28
29
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
|
|
29
30
|
},
|
|
30
31
|
"license": "Apache-2.0",
|
|
31
32
|
"devDependencies": {
|
|
32
|
-
"conventional-changelog-cli": "^2.1.1"
|
|
33
|
+
"conventional-changelog-cli": "^2.1.1",
|
|
34
|
+
"dayjs": "^1.11.7",
|
|
35
|
+
"semver": "^7.5.0"
|
|
33
36
|
}
|
|
34
37
|
}
|