@nx/react-native 20.5.0-rc.4 → 20.5.1

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/react-native",
3
- "version": "20.5.0-rc.4",
3
+ "version": "20.5.1",
4
4
  "private": false,
5
5
  "description": "The Nx Plugin for React Native contains generators for managing React Native applications and libraries within an Nx workspace. It provides: \n\n-Integration with libraries such as Jest, Detox, and Storybook.\n-Scaffolding for creating buildable libraries that can be published to npm.\n-Utilities for automatic workspace refactoring.",
6
6
  "keywords": [
@@ -35,12 +35,12 @@
35
35
  "picocolors": "^1.1.0",
36
36
  "tsconfig-paths": "^4.1.2",
37
37
  "tslib": "^2.3.0",
38
- "@nx/devkit": "20.5.0-rc.4",
39
- "@nx/jest": "20.5.0-rc.4",
40
- "@nx/js": "20.5.0-rc.4",
41
- "@nx/eslint": "20.5.0-rc.4",
42
- "@nx/react": "20.5.0-rc.4",
43
- "@nx/workspace": "20.5.0-rc.4"
38
+ "@nx/devkit": "20.5.1",
39
+ "@nx/jest": "20.5.1",
40
+ "@nx/js": "20.5.1",
41
+ "@nx/eslint": "20.5.1",
42
+ "@nx/react": "20.5.1",
43
+ "@nx/workspace": "20.5.1"
44
44
  },
45
45
  "executors": "./executors.json",
46
46
  "ng-update": {
@@ -46,7 +46,7 @@ async function reactNativeApplicationGeneratorInternal(host, schema) {
46
46
  // If we are using the new TS solution
47
47
  // We need to update the workspace file (package.json or pnpm-workspaces.yaml) to include the new project
48
48
  if (options.isTsSolutionSetup) {
49
- (0, ts_solution_setup_1.addProjectToTsSolutionWorkspace)(host, options.appProjectRoot);
49
+ await (0, ts_solution_setup_1.addProjectToTsSolutionWorkspace)(host, options.appProjectRoot);
50
50
  }
51
51
  const lintTask = await (0, add_linting_1.addLinting)(host, {
52
52
  ...options,
@@ -45,7 +45,7 @@ async function reactNativeLibraryGeneratorInternal(host, schema) {
45
45
  tasks.push(addProjectTask);
46
46
  }
47
47
  if (options.isUsingTsSolutionConfig) {
48
- (0, ts_solution_setup_1.addProjectToTsSolutionWorkspace)(host, options.projectRoot);
48
+ await (0, ts_solution_setup_1.addProjectToTsSolutionWorkspace)(host, options.projectRoot);
49
49
  }
50
50
  const lintTask = await (0, add_linting_1.addLinting)(host, {
51
51
  ...options,