newcandies 0.1.12 → 0.1.13
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/dist/index.js +2 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -136,7 +136,7 @@ function TEMPLATESafe(type) {
|
|
|
136
136
|
async function writeBaseline({ dest, name, withQuery }) {
|
|
137
137
|
const baseDeps = {
|
|
138
138
|
// Expo core + platform libs
|
|
139
|
-
expo: "
|
|
139
|
+
expo: "54.0.23",
|
|
140
140
|
"expo-constants": "~18.0.10",
|
|
141
141
|
"expo-font": "~14.0.9",
|
|
142
142
|
"expo-linking": "~8.0.8",
|
|
@@ -382,8 +382,7 @@ export default function RootLayout() {
|
|
|
382
382
|
await fs.writeFile(path.join(appDir, "_layout.tsx"), rootLayout);
|
|
383
383
|
const tabsDir = path.join(appDir, "(tabs)");
|
|
384
384
|
await fs.ensureDir(tabsDir);
|
|
385
|
-
const layout = `import
|
|
386
|
-
import FontAwesome from '@expo/vector-icons/FontAwesome';
|
|
385
|
+
const layout = `import FontAwesome from '@expo/vector-icons/FontAwesome';
|
|
387
386
|
import { Tabs } from 'expo-router';
|
|
388
387
|
|
|
389
388
|
function TabBarIcon(props: { name: React.ComponentProps<typeof FontAwesome>['name']; color: string; }) {
|