create-expo-stack 2.11.24-next.b5374ea → 2.11.25-next.8f9d35d
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
|
@@ -59,7 +59,7 @@ Each project is generated based on the results of the CLI, on a per-file basis.
|
|
|
59
59
|
|
|
60
60
|
| Library | Category | Version | Description |
|
|
61
61
|
| ------------------ | ------------------- | ------- | ---------------------------------------------- |
|
|
62
|
-
| React Native | Mobile Framework | v0.
|
|
62
|
+
| React Native | Mobile Framework | v0.74 | The best cross-platform mobile framework |
|
|
63
63
|
| React | UI Framework | v18 | The most popular UI framework in the world |
|
|
64
64
|
| TypeScript | Language | v5 | Static typechecking |
|
|
65
65
|
| React Navigation | Navigation | v6 | Performant and consistent navigation framework |
|
|
@@ -29,7 +29,15 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
<% if (props.stylingPackage?.name === "nativewind" || props.stylingPackage?.name === "nativewindui") { %>
|
|
32
|
-
"nativewind": "
|
|
32
|
+
"nativewind": "latest",
|
|
33
|
+
<%# This will already be installed if using expo-router (see below) %>
|
|
34
|
+
<% if (props.navigationPackage?.name !== "expo-router") { %>
|
|
35
|
+
"react-native-reanimated": "~3.10.1",
|
|
36
|
+
<% } %>
|
|
37
|
+
<%# This will already be installed if using navigation (see below) %>
|
|
38
|
+
<% if (props.navigationPackage?.type !== "navigation") { %>
|
|
39
|
+
"react-native-safe-area-context": "4.10.5",
|
|
40
|
+
<% } %>
|
|
33
41
|
<% } %>
|
|
34
42
|
<% if (props.stylingPackage?.name === "nativewindui") { %>
|
|
35
43
|
"@roninoss/icons": "^0.0.4",
|