@nrwl/react-native 13.6.0-beta.1 → 13.7.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": "@nrwl/react-native",
3
- "version": "13.6.0-beta.1",
3
+ "version": "13.7.1",
4
4
  "description": "React Native Plugin for Nx",
5
5
  "keywords": [
6
6
  "Monorepo",
@@ -24,18 +24,18 @@
24
24
  "main": "index.js",
25
25
  "types": "index.d.ts",
26
26
  "dependencies": {
27
- "@nrwl/detox": "13.6.0-beta.1",
28
- "@nrwl/devkit": "13.6.0-beta.1",
29
- "@nrwl/jest": "13.6.0-beta.1",
30
- "@nrwl/linter": "13.6.0-beta.1",
31
- "@nrwl/react": "13.6.0-beta.1",
32
- "@nrwl/workspace": "13.6.0-beta.1",
27
+ "@nrwl/detox": "13.7.1",
28
+ "@nrwl/devkit": "13.7.1",
29
+ "@nrwl/jest": "13.7.1",
30
+ "@nrwl/linter": "13.7.1",
31
+ "@nrwl/react": "13.7.1",
32
+ "@nrwl/workspace": "13.7.1",
33
33
  "chalk": "^4.1.0",
34
34
  "enhanced-resolve": "^5.8.3",
35
35
  "fs-extra": "^9.1.0",
36
36
  "ignore": "^5.0.4",
37
37
  "metro-resolver": "^0.66.2",
38
- "node-fetch": "^2.6.1",
38
+ "node-fetch": "^2.6.7",
39
39
  "tsconfig-paths": "^3.9.0"
40
40
  },
41
41
  "peerDependencies": {
@@ -1,5 +1,5 @@
1
1
  import { findAllNpmDependencies } from './find-all-npm-dependencies';
2
- import { DependencyType, ProjectGraph } from '@nrwl/devkit';
2
+ import { ProjectGraph } from '@nrwl/devkit';
3
3
 
4
4
  test('findAllNpmDependencies', () => {
5
5
  const graph: ProjectGraph = {
@@ -61,34 +61,26 @@ test('findAllNpmDependencies', () => {
61
61
  },
62
62
  dependencies: {
63
63
  myapp: [
64
- { type: DependencyType.static, source: 'myapp', target: 'lib1' },
65
- { type: DependencyType.static, source: 'myapp', target: 'lib2' },
64
+ { type: 'static', source: 'myapp', target: 'lib1' },
65
+ { type: 'static', source: 'myapp', target: 'lib2' },
66
66
  {
67
- type: DependencyType.static,
67
+ type: 'static',
68
68
  source: 'myapp',
69
69
  target: 'npm:react-native-image-picker',
70
70
  },
71
71
  {
72
- type: DependencyType.static,
72
+ type: 'static',
73
73
  source: 'myapp',
74
74
  target: 'npm:@nrwl/react-native',
75
75
  },
76
76
  ],
77
77
  lib1: [
78
- { type: DependencyType.static, source: 'lib1', target: 'lib2' },
79
- {
80
- type: DependencyType.static,
81
- source: 'lib3',
82
- target: 'npm:react-native-snackbar',
83
- },
78
+ { type: 'static', source: 'lib1', target: 'lib2' },
79
+ { type: 'static', source: 'lib3', target: 'npm:react-native-snackbar' },
84
80
  ],
85
- lib2: [{ type: DependencyType.static, source: 'lib2', target: 'lib3' }],
81
+ lib2: [{ type: 'static', source: 'lib2', target: 'lib3' }],
86
82
  lib3: [
87
- {
88
- type: DependencyType.static,
89
- source: 'lib3',
90
- target: 'npm:react-native-dialog',
91
- },
83
+ { type: 'static', source: 'lib3', target: 'npm:react-native-dialog' },
92
84
  ],
93
85
  },
94
86
  };
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.babelRuntimeVersion = exports.reactNativeSvgVersion = exports.reactNativeSvgTransformerVersion = exports.reactTestRendererVersion = exports.jestReactNativeVersion = exports.testingLibraryJestNativeVersion = exports.testingLibraryReactNativeVersion = exports.metroReactNativeBabelPresetVersion = exports.reactNativeConfigVersion = exports.reactNativeCommunityCliAndroid = exports.reactNativeCommunityCliIos = exports.reactNativeCommunityCli = exports.metroVersion = exports.typesReactNativeVersion = exports.reactNativeVersion = exports.nxVersion = void 0;
4
- exports.nxVersion = '13.6.0-beta.1';
4
+ exports.nxVersion = '13.7.1';
5
5
  exports.reactNativeVersion = '0.66.4';
6
6
  exports.typesReactNativeVersion = '0.66.11';
7
7
  exports.metroVersion = '0.66.2';