@apollohg/react-native-prose-editor 0.5.0 → 0.5.1

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/README.md CHANGED
@@ -56,7 +56,7 @@ Required peer dependencies:
56
56
  Install the package:
57
57
 
58
58
  ```sh
59
- npm install @apollohg/react-native-prose-editor@0.5.0
59
+ npm install @apollohg/react-native-prose-editor@0.5.1
60
60
  ```
61
61
 
62
62
  For local package development in this repo:
@@ -8,32 +8,32 @@
8
8
  <key>BinaryPath</key>
9
9
  <string>libeditor_core.a</string>
10
10
  <key>LibraryIdentifier</key>
11
- <string>ios-arm64_x86_64-simulator</string>
11
+ <string>ios-arm64</string>
12
12
  <key>LibraryPath</key>
13
13
  <string>libeditor_core.a</string>
14
14
  <key>SupportedArchitectures</key>
15
15
  <array>
16
16
  <string>arm64</string>
17
- <string>x86_64</string>
18
17
  </array>
19
18
  <key>SupportedPlatform</key>
20
19
  <string>ios</string>
21
- <key>SupportedPlatformVariant</key>
22
- <string>simulator</string>
23
20
  </dict>
24
21
  <dict>
25
22
  <key>BinaryPath</key>
26
23
  <string>libeditor_core.a</string>
27
24
  <key>LibraryIdentifier</key>
28
- <string>ios-arm64</string>
25
+ <string>ios-arm64_x86_64-simulator</string>
29
26
  <key>LibraryPath</key>
30
27
  <string>libeditor_core.a</string>
31
28
  <key>SupportedArchitectures</key>
32
29
  <array>
33
30
  <string>arm64</string>
31
+ <string>x86_64</string>
34
32
  </array>
35
33
  <key>SupportedPlatform</key>
36
34
  <string>ios</string>
35
+ <key>SupportedPlatformVariant</key>
36
+ <string>simulator</string>
37
37
  </dict>
38
38
  </array>
39
39
  <key>CFBundlePackageType</key>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apollohg/react-native-prose-editor",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Native rich text editor with Rust core for React Native",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/apollohg/react-native-prose-editor",
@@ -67,7 +67,8 @@
67
67
  "babel-jest": "^29.7.0",
68
68
  "jest": "^29.7.0",
69
69
  "react-test-renderer": "^19.1.0",
70
- "typescript": "^5.9.3"
70
+ "typescript": "^5.9.3",
71
+ "prettier": "^3.8.1"
71
72
  },
72
73
  "files": [
73
74
  "README.md",
@@ -84,8 +85,5 @@
84
85
  "rust/android",
85
86
  "rust/bindings/kotlin",
86
87
  "expo-module.config.json"
87
- ],
88
- "dependencies": {
89
- "prettier": "^3.8.1"
90
- }
88
+ ]
91
89
  }