@nx/expo 22.2.0-beta.3 → 22.2.0-beta.4

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.2.0-beta.3",
3
+ "version": "22.2.0-beta.4",
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.2.0-beta.3",
32
- "@nx/eslint": "22.2.0-beta.3",
33
- "@nx/js": "22.2.0-beta.3",
34
- "@nx/react": "22.2.0-beta.3",
31
+ "@nx/devkit": "22.2.0-beta.4",
32
+ "@nx/eslint": "22.2.0-beta.4",
33
+ "@nx/js": "22.2.0-beta.4",
34
+ "@nx/react": "22.2.0-beta.4",
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.2.0-beta.3",
47
- "@nx/rollup": "22.2.0-beta.3"
46
+ "@nx/detox": "22.2.0-beta.4",
47
+ "@nx/rollup": "22.2.0-beta.4"
48
48
  },
49
49
  "executors": "./executors.json",
50
50
  "ng-update": {
@@ -9,8 +9,8 @@ async function createAiInstructionsForExpo54(tree) {
9
9
  return;
10
10
  }
11
11
  const contents = (0, fs_1.readFileSync)(pathToAiInstructions, 'utf-8');
12
- tree.write('ai-migrations/MIGRATE_EXPO_54.md', contents);
12
+ tree.write('tools/ai-migrations/MIGRATE_EXPO_54.md', contents);
13
13
  return [
14
- `We created 'ai-migrations/MIGRATE_EXPO_54.md' with instructions for an AI Agent to help migrate your Expo projects to Expo SDK 54.`,
14
+ `We created 'tools/ai-migrations/MIGRATE_EXPO_54.md' with instructions for an AI Agent to help migrate your Expo projects to Expo SDK 54.`,
15
15
  ];
16
16
  }