@ankhorage/expo-runtime 3.0.9 → 3.0.11
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 +12 -0
- package/package.json +6 -5
- package/src/iconFonts.test.ts +9 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @ankhorage/expo-runtime
|
|
2
2
|
|
|
3
|
+
## 3.0.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- defaa7f: Update Ankhorage dependencies: `@ankhorage/paradox`, `@ankhorage/zora`.
|
|
8
|
+
|
|
9
|
+
## 3.0.10
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- b94b350: Use the Web icon-font provider during Expo static server rendering so browser hydration starts from matching font registrations.
|
|
14
|
+
|
|
3
15
|
## 3.0.9
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ankhorage/expo-runtime",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.11",
|
|
5
5
|
"description": "Declarative runtime integration for Expo apps: maps app capabilities to permissions, packages, config plugins, providers, and adapters",
|
|
6
6
|
"homepage": "https://github.com/ankhorage/expo-runtime#readme",
|
|
7
7
|
"bugs": {
|
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
"browser": "./src/ExpoZoraIconFontProvider.web.tsx",
|
|
69
69
|
"react-native": "./src/ExpoZoraIconFontProvider.tsx",
|
|
70
70
|
"types": "./src/ExpoZoraIconFontProvider.tsx",
|
|
71
|
+
"node": "./src/ExpoZoraIconFontProvider.web.tsx",
|
|
71
72
|
"import": "./dist/ExpoZoraIconFontProvider.js",
|
|
72
73
|
"default": "./dist/ExpoZoraIconFontProvider.js"
|
|
73
74
|
},
|
|
@@ -126,7 +127,7 @@
|
|
|
126
127
|
},
|
|
127
128
|
"peerDependencies": {
|
|
128
129
|
"@ankhorage/permissions": "^0.2.3",
|
|
129
|
-
"@ankhorage/zora": "^3.0.
|
|
130
|
+
"@ankhorage/zora": "^3.0.1",
|
|
130
131
|
"@react-native-vector-icons/fontawesome": "^13.1.3",
|
|
131
132
|
"@react-native-vector-icons/fontawesome5": "^13.1.3",
|
|
132
133
|
"@react-native-vector-icons/fontawesome6": "^13.1.3",
|
|
@@ -189,10 +190,10 @@
|
|
|
189
190
|
}
|
|
190
191
|
},
|
|
191
192
|
"devDependencies": {
|
|
192
|
-
"@ankhorage/devtools": "^1.
|
|
193
|
-
"@ankhorage/paradox": "^0.1.
|
|
193
|
+
"@ankhorage/devtools": "^1.7.0",
|
|
194
|
+
"@ankhorage/paradox": "^0.1.24",
|
|
194
195
|
"@ankhorage/permissions": "^0.2.3",
|
|
195
|
-
"@ankhorage/zora": "^3.0.
|
|
196
|
+
"@ankhorage/zora": "^3.0.1",
|
|
196
197
|
"@changesets/cli": "^2.31.0",
|
|
197
198
|
"@react-native-picker/picker": "2.11.4",
|
|
198
199
|
"@react-native-vector-icons/fontawesome": "^13.1.3",
|
package/src/iconFonts.test.ts
CHANGED
|
@@ -9,11 +9,19 @@ test('exports the icon font boundary through its focused subpath', async () => {
|
|
|
9
9
|
|
|
10
10
|
const iconFontExport = packageJson.exports['./icon-fonts'];
|
|
11
11
|
|
|
12
|
-
expect(Object.keys(iconFontExport)
|
|
12
|
+
expect(Object.keys(iconFontExport)).toEqual([
|
|
13
|
+
'browser',
|
|
14
|
+
'react-native',
|
|
15
|
+
'types',
|
|
16
|
+
'node',
|
|
17
|
+
'import',
|
|
18
|
+
'default',
|
|
19
|
+
]);
|
|
13
20
|
expect(iconFontExport).toEqual({
|
|
14
21
|
browser: './src/ExpoZoraIconFontProvider.web.tsx',
|
|
15
22
|
'react-native': './src/ExpoZoraIconFontProvider.tsx',
|
|
16
23
|
types: './src/ExpoZoraIconFontProvider.tsx',
|
|
24
|
+
node: './src/ExpoZoraIconFontProvider.web.tsx',
|
|
17
25
|
import: './dist/ExpoZoraIconFontProvider.js',
|
|
18
26
|
default: './dist/ExpoZoraIconFontProvider.js',
|
|
19
27
|
});
|