react-native-windows 0.80.0-preview.3 → 0.80.0-preview.5
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.
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
-->
|
|
11
11
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
12
12
|
<PropertyGroup>
|
|
13
|
-
<ReactNativeWindowsVersion>0.80.0-preview.
|
|
13
|
+
<ReactNativeWindowsVersion>0.80.0-preview.5</ReactNativeWindowsVersion>
|
|
14
14
|
<ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
|
|
15
15
|
<ReactNativeWindowsMinor>80</ReactNativeWindowsMinor>
|
|
16
16
|
<ReactNativeWindowsPatch>0</ReactNativeWindowsPatch>
|
|
17
17
|
<ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
|
|
18
|
-
<ReactNativeWindowsCommitId>
|
|
18
|
+
<ReactNativeWindowsCommitId>bfd8cddb021ba85c6382567fc39d315d812c5d08</ReactNativeWindowsCommitId>
|
|
19
19
|
</PropertyGroup>
|
|
20
20
|
</Project>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-windows",
|
|
3
|
-
"version": "0.80.0-preview.
|
|
3
|
+
"version": "0.80.0-preview.5",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@react-native-community/cli": "17.0.0",
|
|
27
27
|
"@react-native-community/cli-platform-android": "17.0.0",
|
|
28
28
|
"@react-native-community/cli-platform-ios": "17.0.0",
|
|
29
|
-
"@react-native-windows/cli": "0.80.0-preview.
|
|
29
|
+
"@react-native-windows/cli": "0.80.0-preview.4",
|
|
30
30
|
"@react-native/assets": "1.0.0",
|
|
31
31
|
"@react-native/assets-registry": "0.80.0",
|
|
32
32
|
"@react-native/codegen": "0.80.0",
|
|
@@ -144,8 +144,9 @@ async function postInstall(config = {}, options = {}) {
|
|
|
144
144
|
module.exports = {
|
|
145
145
|
name: 'React Native Windows Application (New Arch, WinAppSDK, C++)',
|
|
146
146
|
description:
|
|
147
|
-
"
|
|
147
|
+
"A RNW app using RN's New Architecture, built in C++ and targeting WinAppSDK.",
|
|
148
148
|
preInstall,
|
|
149
149
|
getFileMappings,
|
|
150
150
|
postInstall,
|
|
151
|
+
isDefault: true,
|
|
151
152
|
};
|
|
@@ -13,7 +13,7 @@ function makeGenerateWindowsWrapper(language = 'cpp', isDefault = false) {
|
|
|
13
13
|
const name = `React Native Windows Application (Old Arch, UWP, ${
|
|
14
14
|
language === 'cs' ? 'C#' : 'C++'
|
|
15
15
|
})`;
|
|
16
|
-
const description = `A RNW app using RN's Old Architecture, built in ${
|
|
16
|
+
const description = `[Legacy] A RNW app using RN's Old Architecture, built in ${
|
|
17
17
|
language === 'cs' ? 'C#' : 'C++'
|
|
18
18
|
} and targeting UWP.`;
|
|
19
19
|
|