@cpp.js/package-zlib 1.0.0-beta.29 → 1.0.0
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/CHANGELOG.md +6 -0
- package/README.md +1 -1
- package/dist/prebuilt/iOS-iphoneos/lib/libz.a +0 -0
- package/dist/prebuilt/iOS-iphonesimulator/lib/libz.a +0 -0
- package/package.json +2 -2
- package/z.xcframework/Info.plist +5 -5
- package/z.xcframework/ios-arm64_arm64e/libz.a +0 -0
- package/z.xcframework/ios-arm64_arm64e_x86_64-simulator/libz.a +0 -0
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -47,4 +47,4 @@ std::string Native::sample() {
|
|
|
47
47
|
## License
|
|
48
48
|
This project includes the precompiled zlib library, which is distributed under the [zlib License](https://zlib.net/zlib_license.html).
|
|
49
49
|
|
|
50
|
-
Zlib Homepage:
|
|
50
|
+
Zlib Homepage: [https://zlib.net/](https://zlib.net/)
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cpp.js/package-zlib",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"nativeVersion": "1.3.1",
|
|
5
5
|
"description": "This package provides the precompiled zlib library, built using cpp.js, for easy integration into JavaScript, WebAssembly and React Native projects. It offers compression and decompression functionalities through the zlib API, ensuring high performance and cross-platform compatibility. Ideal for use in web and mobile applications.",
|
|
6
6
|
"homepage": "https://github.com/bugra9/cpp.js/tree/main/packages/cppjs-package-zlib#readme",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"license": "Zlib",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"cpp.js": "^1.0.0
|
|
11
|
+
"cpp.js": "^1.0.0"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
14
14
|
"z",
|
package/z.xcframework/Info.plist
CHANGED
|
@@ -10,19 +10,16 @@
|
|
|
10
10
|
<key>HeadersPath</key>
|
|
11
11
|
<string>Headers</string>
|
|
12
12
|
<key>LibraryIdentifier</key>
|
|
13
|
-
<string>ios-
|
|
13
|
+
<string>ios-arm64_arm64e</string>
|
|
14
14
|
<key>LibraryPath</key>
|
|
15
15
|
<string>libz.a</string>
|
|
16
16
|
<key>SupportedArchitectures</key>
|
|
17
17
|
<array>
|
|
18
18
|
<string>arm64</string>
|
|
19
19
|
<string>arm64e</string>
|
|
20
|
-
<string>x86_64</string>
|
|
21
20
|
</array>
|
|
22
21
|
<key>SupportedPlatform</key>
|
|
23
22
|
<string>ios</string>
|
|
24
|
-
<key>SupportedPlatformVariant</key>
|
|
25
|
-
<string>simulator</string>
|
|
26
23
|
</dict>
|
|
27
24
|
<dict>
|
|
28
25
|
<key>BinaryPath</key>
|
|
@@ -30,16 +27,19 @@
|
|
|
30
27
|
<key>HeadersPath</key>
|
|
31
28
|
<string>Headers</string>
|
|
32
29
|
<key>LibraryIdentifier</key>
|
|
33
|
-
<string>ios-
|
|
30
|
+
<string>ios-arm64_arm64e_x86_64-simulator</string>
|
|
34
31
|
<key>LibraryPath</key>
|
|
35
32
|
<string>libz.a</string>
|
|
36
33
|
<key>SupportedArchitectures</key>
|
|
37
34
|
<array>
|
|
38
35
|
<string>arm64</string>
|
|
39
36
|
<string>arm64e</string>
|
|
37
|
+
<string>x86_64</string>
|
|
40
38
|
</array>
|
|
41
39
|
<key>SupportedPlatform</key>
|
|
42
40
|
<string>ios</string>
|
|
41
|
+
<key>SupportedPlatformVariant</key>
|
|
42
|
+
<string>simulator</string>
|
|
43
43
|
</dict>
|
|
44
44
|
</array>
|
|
45
45
|
<key>CFBundlePackageType</key>
|
|
Binary file
|
|
Binary file
|