@ronas-it/nx-generators 0.19.1 → 0.19.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ronas-it/nx-generators",
3
- "version": "0.19.1",
3
+ "version": "0.19.2",
4
4
  "description": "Nx generators for Ronas IT projects",
5
5
  "license": "MIT",
6
6
  "author": "Ronas IT",
@@ -21,6 +21,9 @@ const createConfig = (): Omit<ExpoConfig, 'extra'> & { extra: { eas: EASConfig }
21
21
  resizeMode: 'contain',
22
22
  backgroundColor: '#ffffff',
23
23
  },
24
+ runtimeVersion: {
25
+ policy: 'appVersion',
26
+ },
24
27
  updates: {
25
28
  url: `https://u.expo.dev/${projectId}`,
26
29
  },
@@ -39,7 +42,6 @@ const createConfig = (): Omit<ExpoConfig, 'extra'> & { extra: { eas: EASConfig }
39
42
  foregroundImage: './assets/images/adaptive-icon.png',
40
43
  backgroundColor: '#FFFFFF',
41
44
  },
42
- edgeToEdgeEnabled: true
43
45
  },
44
46
  plugins: [
45
47
  'expo-router',
@@ -48,7 +50,6 @@ const createConfig = (): Omit<ExpoConfig, 'extra'> & { extra: { eas: EASConfig }
48
50
  experiments: {
49
51
  reactCanary: true,
50
52
  },
51
- newArchEnabled: true,
52
53
  extra,
53
54
  };
54
55
  };