create-100x-mobile 0.4.8 → 0.4.10

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.
@@ -28,6 +28,8 @@ async function writeScaffoldFiles(projectDir, files) {
28
28
  }
29
29
  async function writeDefaultAssetFiles(projectDir) {
30
30
  const png = Buffer.from(TRANSPARENT_PNG_BASE64, "base64");
31
+ await (0, fs_1.writeBinaryFile)((0, node_path_1.join)(projectDir, "assets/icon.png"), png);
32
+ await (0, fs_1.writeBinaryFile)((0, node_path_1.join)(projectDir, "assets/favicon.png"), png);
31
33
  await (0, fs_1.writeBinaryFile)((0, node_path_1.join)(projectDir, "assets/images/icon.png"), png);
32
34
  await (0, fs_1.writeBinaryFile)((0, node_path_1.join)(projectDir, "assets/images/favicon.png"), png);
33
35
  }
@@ -192,6 +192,7 @@ async function resolveExpoDependencies(projectDir, backend) {
192
192
  "expo-system-ui",
193
193
  "react-native-gesture-handler",
194
194
  "react-native-reanimated",
195
+ "react-native-worklets",
195
196
  "react-native-safe-area-context",
196
197
  "react-native-screens",
197
198
  "react-native-svg",
@@ -11,7 +11,7 @@ function appJsonTemplate(appName, backend) {
11
11
  slug: appName,
12
12
  version: "1.0.0",
13
13
  orientation: "portrait",
14
- icon: "./assets/images/icon.png",
14
+ icon: "./assets/icon.png",
15
15
  scheme: appName,
16
16
  userInterfaceStyle: "automatic",
17
17
  newArchEnabled: true,
@@ -21,7 +21,7 @@ function appJsonTemplate(appName, backend) {
21
21
  web: {
22
22
  bundler: "metro",
23
23
  output: "single",
24
- favicon: "./assets/images/favicon.png",
24
+ favicon: "./assets/favicon.png",
25
25
  },
26
26
  plugins,
27
27
  experiments: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-100x-mobile",
3
- "version": "0.4.8",
3
+ "version": "0.4.10",
4
4
  "description": "Scaffold a full-stack mobile app with Expo + Convex + Clerk in seconds",
5
5
  "main": "dist/cli.js",
6
6
  "bin": {