@nx/expo 22.3.0-beta.2 → 22.3.0-beta.3
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": "@nx/expo",
|
|
3
|
-
"version": "22.3.0-beta.
|
|
3
|
+
"version": "22.3.0-beta.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Expo Plugin for Nx contains executors and generators for managing and developing an expo application within your workspace. For example, you can directly build for different target platforms as well as generate projects and publish your code.",
|
|
6
6
|
"keywords": [
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"main": "./index.js",
|
|
29
29
|
"types": "index.d.ts",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@nx/devkit": "22.3.0-beta.
|
|
32
|
-
"@nx/eslint": "22.3.0-beta.
|
|
33
|
-
"@nx/js": "22.3.0-beta.
|
|
34
|
-
"@nx/react": "22.3.0-beta.
|
|
31
|
+
"@nx/devkit": "22.3.0-beta.3",
|
|
32
|
+
"@nx/eslint": "22.3.0-beta.3",
|
|
33
|
+
"@nx/js": "22.3.0-beta.3",
|
|
34
|
+
"@nx/react": "22.3.0-beta.3",
|
|
35
35
|
"enhanced-resolve": "^5.8.3",
|
|
36
36
|
"picocolors": "^1.1.0",
|
|
37
37
|
"semver": "^7.6.3",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"metro-resolver": ">= 0.82.0"
|
|
44
44
|
},
|
|
45
45
|
"optionalDependencies": {
|
|
46
|
-
"@nx/detox": "22.3.0-beta.
|
|
47
|
-
"@nx/rollup": "22.3.0-beta.
|
|
46
|
+
"@nx/detox": "22.3.0-beta.3",
|
|
47
|
+
"@nx/rollup": "22.3.0-beta.3"
|
|
48
48
|
},
|
|
49
49
|
"executors": "./executors.json",
|
|
50
50
|
"ng-update": {
|
|
@@ -24,7 +24,7 @@ async function installAndUpdatePackageJson(context, options) {
|
|
|
24
24
|
const { installAsync } = require('@expo/cli/build/src/install/installAsync');
|
|
25
25
|
const packages = typeof options.packages === 'string'
|
|
26
26
|
? options.packages.split(',')
|
|
27
|
-
: options.packages ?? [];
|
|
27
|
+
: (options.packages ?? []);
|
|
28
28
|
await installAsync(packages, {
|
|
29
29
|
fix: options.fix,
|
|
30
30
|
check: options.check,
|
|
@@ -13,13 +13,11 @@ These instructions guide you through migrating an Nx workspace containing Expo p
|
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
2. **Locate all Expo configuration files**:
|
|
16
|
-
|
|
17
16
|
- Search for `app.json` or `app.config.{js,ts}`
|
|
18
17
|
- Search for `metro.config.{js,ts}`
|
|
19
18
|
- Check `project.json` files for Expo-related configuration
|
|
20
19
|
|
|
21
20
|
3. **Identify affected code**:
|
|
22
|
-
|
|
23
21
|
- Files importing from `expo-av`
|
|
24
22
|
- Files importing from `expo-file-system`
|
|
25
23
|
- Files using `StatusBar` configuration
|