@nrwl/react-native 14.7.13 → 14.7.14-beta.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/CHANGELOG.md +1 -1
- package/migrations.json +25 -0
- package/package.json +10 -11
- package/src/generators/application/files/app/ios/__className__.xcodeproj/project.pbxproj.template +2 -2
- package/src/generators/application/files/app/ios/__className__.xcworkspace/contents.xcworkspacedata +10 -0
- package/src/generators/application/files/app/ios/__className__.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/src/utils/pod-install-task.js +7 -12
- package/src/utils/pod-install-task.js.map +1 -1
- package/src/utils/versions.d.ts +5 -5
- package/src/utils/versions.js +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
## [14.7.
|
|
6
|
+
## [14.7.14-beta.1](https://github.com/nrwl/nx/compare/14.7.13...14.7.14-beta.1) (2022-09-26)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @nrwl/react-native
|
package/migrations.json
CHANGED
|
@@ -968,6 +968,31 @@
|
|
|
968
968
|
"alwaysAddToPackageJson": false
|
|
969
969
|
}
|
|
970
970
|
}
|
|
971
|
+
},
|
|
972
|
+
"14.7.13": {
|
|
973
|
+
"version": "14.7.13-beta.0",
|
|
974
|
+
"packages": {
|
|
975
|
+
"react-native": {
|
|
976
|
+
"version": "0.70.1",
|
|
977
|
+
"alwaysAddToPackageJson": false
|
|
978
|
+
},
|
|
979
|
+
"@types/react-native": {
|
|
980
|
+
"version": "0.70.3",
|
|
981
|
+
"alwaysAddToPackageJson": false
|
|
982
|
+
},
|
|
983
|
+
"@testing-library/react-native": {
|
|
984
|
+
"version": "11.1.0",
|
|
985
|
+
"alwaysAddToPackageJson": false
|
|
986
|
+
},
|
|
987
|
+
"@testing-library/jest-native": {
|
|
988
|
+
"version": "4.0.12",
|
|
989
|
+
"alwaysAddToPackageJson": false
|
|
990
|
+
},
|
|
991
|
+
"react-native-svg": {
|
|
992
|
+
"version": "13.2.0",
|
|
993
|
+
"alwaysAddToPackageJson": false
|
|
994
|
+
}
|
|
995
|
+
}
|
|
971
996
|
}
|
|
972
997
|
}
|
|
973
998
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nrwl/react-native",
|
|
3
|
-
"version": "14.7.
|
|
3
|
+
"version": "14.7.14-beta.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": [
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
"main": "index.js",
|
|
26
26
|
"types": "index.d.ts",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@nrwl/detox": "14.7.
|
|
29
|
-
"@nrwl/devkit": "14.7.
|
|
30
|
-
"@nrwl/jest": "14.7.
|
|
31
|
-
"@nrwl/linter": "14.7.
|
|
32
|
-
"@nrwl/react": "14.7.
|
|
33
|
-
"@nrwl/storybook": "14.7.
|
|
34
|
-
"@nrwl/workspace": "14.7.
|
|
28
|
+
"@nrwl/detox": "14.7.14-beta.1",
|
|
29
|
+
"@nrwl/devkit": "14.7.14-beta.1",
|
|
30
|
+
"@nrwl/jest": "14.7.14-beta.1",
|
|
31
|
+
"@nrwl/linter": "14.7.14-beta.1",
|
|
32
|
+
"@nrwl/react": "14.7.14-beta.1",
|
|
33
|
+
"@nrwl/storybook": "14.7.14-beta.1",
|
|
34
|
+
"@nrwl/workspace": "14.7.14-beta.1",
|
|
35
35
|
"chalk": "^4.1.0",
|
|
36
36
|
"enhanced-resolve": "^5.8.3",
|
|
37
37
|
"fs-extra": "^10.1.0",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"tsconfig-paths": "^3.9.0"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"react-native": "^0.70.
|
|
45
|
+
"react-native": "^0.70.1"
|
|
46
46
|
},
|
|
47
47
|
"builders": "./executors.json",
|
|
48
48
|
"ng-update": {
|
|
@@ -53,6 +53,5 @@
|
|
|
53
53
|
"publishConfig": {
|
|
54
54
|
"access": "public"
|
|
55
55
|
},
|
|
56
|
-
"
|
|
57
|
-
"gitHead": "518caaddae6e3392e7648a828a8312fa1d83f9c4"
|
|
56
|
+
"gitHead": "4a7b87abb3ce23403192167045bad54cbf2469d6"
|
|
58
57
|
}
|
package/src/generators/application/files/app/ios/__className__.xcodeproj/project.pbxproj.template
CHANGED
|
@@ -562,7 +562,7 @@
|
|
|
562
562
|
COPY_PHASE_STRIP = NO;
|
|
563
563
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
564
564
|
ENABLE_TESTABILITY = YES;
|
|
565
|
-
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" =
|
|
565
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
|
|
566
566
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
567
567
|
GCC_DYNAMIC_NO_PIC = NO;
|
|
568
568
|
GCC_NO_COMMON_BLOCKS = YES;
|
|
@@ -633,7 +633,7 @@
|
|
|
633
633
|
COPY_PHASE_STRIP = YES;
|
|
634
634
|
ENABLE_NS_ASSERTIONS = NO;
|
|
635
635
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
636
|
-
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" =
|
|
636
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
|
|
637
637
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
638
638
|
GCC_NO_COMMON_BLOCKS = YES;
|
|
639
639
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
@@ -37,21 +37,16 @@ function runPodInstall(iosDirectory, install = true) {
|
|
|
37
37
|
exports.runPodInstall = runPodInstall;
|
|
38
38
|
function podInstall(iosDirectory) {
|
|
39
39
|
return new Promise((resolve, reject) => {
|
|
40
|
-
const
|
|
40
|
+
const result = (0, child_process_1.execSync)('pod install', {
|
|
41
41
|
cwd: iosDirectory,
|
|
42
|
-
stdio: [0, 1, 2],
|
|
43
42
|
});
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
reject(new Error(podInstallErrorMessage));
|
|
50
|
-
}
|
|
51
|
-
});
|
|
52
|
-
process.on('error', () => {
|
|
43
|
+
devkit_1.logger.info(result.toString);
|
|
44
|
+
if (result.toString().includes('Pod installation complete')) {
|
|
45
|
+
resolve();
|
|
46
|
+
}
|
|
47
|
+
else {
|
|
53
48
|
reject(new Error(podInstallErrorMessage));
|
|
54
|
-
}
|
|
49
|
+
}
|
|
55
50
|
});
|
|
56
51
|
}
|
|
57
52
|
exports.podInstall = podInstall;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pod-install-task.js","sourceRoot":"","sources":["../../../../../packages/react-native/src/utils/pod-install-task.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"pod-install-task.js","sourceRoot":"","sources":["../../../../../packages/react-native/src/utils/pod-install-task.ts"],"names":[],"mappings":";;;AAAA,iDAAyC;AACzC,2BAA8B;AAC9B,+BAA+B;AAC/B,yCAAyD;AAEzD,MAAM,sBAAsB,GAAG;UACrB,KAAK,CAAC,IAAI,CAAC,aAAa,CAAC;;;;EAIjC,KAAK,CAAC,IAAI,CAAC,gCAAgC,CAAC;;;EAG5C,KAAK,CAAC,IAAI,CAAC,oDAAoD,CAAC;CACjE,CAAC;AAEF;;;;GAIG;AACH,SAAgB,aAAa,CAC3B,YAAoB,EACpB,UAAmB,IAAI;IAEvB,OAAO,GAAG,EAAE;QACV,IAAI,IAAA,aAAQ,GAAE,KAAK,QAAQ,EAAE;YAC3B,eAAM,CAAC,IAAI,CAAC,+CAA+C,CAAC,CAAC;YAC7D,OAAO;SACR;QAED,IAAI,CAAC,OAAO,EAAE;YACZ,eAAM,CAAC,IAAI,CAAC,wBAAwB,CAAC,CAAC;YACtC,OAAO;SACR;QAED,eAAM,CAAC,IAAI,CAAC,iCAAiC,YAAY,GAAG,CAAC,CAAC;QAE9D,OAAO,UAAU,CAAC,YAAY,CAAC,CAAC;IAClC,CAAC,CAAC;AACJ,CAAC;AAnBD,sCAmBC;AAED,SAAgB,UAAU,CAAC,YAAoB;IAC7C,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;QACrC,MAAM,MAAM,GAAG,IAAA,wBAAQ,EAAC,aAAa,EAAE;YACrC,GAAG,EAAE,YAAY;SAClB,CAAC,CAAC;QACH,eAAM,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;QAC7B,IAAI,MAAM,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,2BAA2B,CAAC,EAAE;YAC3D,OAAO,EAAE,CAAC;SACX;aAAM;YACL,MAAM,CAAC,IAAI,KAAK,CAAC,sBAAsB,CAAC,CAAC,CAAC;SAC3C;IACH,CAAC,CAAC,CAAC;AACL,CAAC;AAZD,gCAYC"}
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const nxVersion: any;
|
|
2
|
-
export declare const reactNativeVersion = "0.70.
|
|
3
|
-
export declare const typesReactNativeVersion = "0.70.
|
|
2
|
+
export declare const reactNativeVersion = "0.70.1";
|
|
3
|
+
export declare const typesReactNativeVersion = "0.70.3";
|
|
4
4
|
export declare const typesNodeVersion = "16.11.7";
|
|
5
5
|
export declare const metroVersion = "0.72.2";
|
|
6
6
|
export declare const reactNativeCommunityCli = "9.1.1";
|
|
@@ -8,9 +8,9 @@ export declare const reactNativeCommunityCliIos = "9.1.0";
|
|
|
8
8
|
export declare const reactNativeCommunityCliAndroid = "9.1.0";
|
|
9
9
|
export declare const reactNativeConfigVersion = "1.4.6";
|
|
10
10
|
export declare const reactNativeAsyncStorageAsyncStorageVersion = "1.17.10";
|
|
11
|
-
export declare const testingLibraryReactNativeVersion = "11.
|
|
12
|
-
export declare const testingLibraryJestNativeVersion = "4.0.
|
|
11
|
+
export declare const testingLibraryReactNativeVersion = "11.1.0";
|
|
12
|
+
export declare const testingLibraryJestNativeVersion = "4.0.12";
|
|
13
13
|
export declare const jestReactNativeVersion = "18.0.0";
|
|
14
14
|
export declare const reactNativeSvgTransformerVersion = "1.0.0";
|
|
15
|
-
export declare const reactNativeSvgVersion = "13.
|
|
15
|
+
export declare const reactNativeSvgVersion = "13.2.0";
|
|
16
16
|
export declare const babelRuntimeVersion = "7.19.0";
|
package/src/utils/versions.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.babelRuntimeVersion = exports.reactNativeSvgVersion = exports.reactNativeSvgTransformerVersion = exports.jestReactNativeVersion = exports.testingLibraryJestNativeVersion = exports.testingLibraryReactNativeVersion = exports.reactNativeAsyncStorageAsyncStorageVersion = exports.reactNativeConfigVersion = exports.reactNativeCommunityCliAndroid = exports.reactNativeCommunityCliIos = exports.reactNativeCommunityCli = exports.metroVersion = exports.typesNodeVersion = exports.typesReactNativeVersion = exports.reactNativeVersion = exports.nxVersion = void 0;
|
|
4
4
|
exports.nxVersion = require('../../package.json').version;
|
|
5
|
-
exports.reactNativeVersion = '0.70.
|
|
6
|
-
exports.typesReactNativeVersion = '0.70.
|
|
5
|
+
exports.reactNativeVersion = '0.70.1';
|
|
6
|
+
exports.typesReactNativeVersion = '0.70.3';
|
|
7
7
|
exports.typesNodeVersion = '16.11.7';
|
|
8
8
|
exports.metroVersion = '0.72.2';
|
|
9
9
|
exports.reactNativeCommunityCli = '9.1.1';
|
|
@@ -11,10 +11,10 @@ exports.reactNativeCommunityCliIos = '9.1.0';
|
|
|
11
11
|
exports.reactNativeCommunityCliAndroid = '9.1.0';
|
|
12
12
|
exports.reactNativeConfigVersion = '1.4.6';
|
|
13
13
|
exports.reactNativeAsyncStorageAsyncStorageVersion = '1.17.10';
|
|
14
|
-
exports.testingLibraryReactNativeVersion = '11.
|
|
15
|
-
exports.testingLibraryJestNativeVersion = '4.0.
|
|
14
|
+
exports.testingLibraryReactNativeVersion = '11.1.0';
|
|
15
|
+
exports.testingLibraryJestNativeVersion = '4.0.12';
|
|
16
16
|
exports.jestReactNativeVersion = '18.0.0';
|
|
17
17
|
exports.reactNativeSvgTransformerVersion = '1.0.0';
|
|
18
|
-
exports.reactNativeSvgVersion = '13.
|
|
18
|
+
exports.reactNativeSvgVersion = '13.2.0';
|
|
19
19
|
exports.babelRuntimeVersion = '7.19.0';
|
|
20
20
|
//# sourceMappingURL=versions.js.map
|