@react-native-windows/cli 0.0.0-canary.13 → 0.0.0-canary.130
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/README.md +47 -0
- package/lib-commonjs/config/configUtils.d.ts +25 -2
- package/lib-commonjs/config/configUtils.js +138 -30
- package/lib-commonjs/config/configUtils.js.map +1 -1
- package/lib-commonjs/config/dependencyConfig.js +104 -43
- package/lib-commonjs/config/dependencyConfig.js.map +1 -1
- package/lib-commonjs/config/projectConfig.d.ts +4 -1
- package/lib-commonjs/config/projectConfig.js +72 -12
- package/lib-commonjs/config/projectConfig.js.map +1 -1
- package/lib-commonjs/e2etest/autolink.test.d.ts +6 -0
- package/lib-commonjs/e2etest/autolink.test.js +386 -0
- package/lib-commonjs/e2etest/autolink.test.js.map +1 -0
- package/lib-commonjs/e2etest/dependencyConfig.test.d.ts +6 -0
- package/lib-commonjs/e2etest/dependencyConfig.test.js +130 -0
- package/lib-commonjs/e2etest/dependencyConfig.test.js.map +1 -0
- package/lib-commonjs/e2etest/projectConfig.test.d.ts +6 -0
- package/lib-commonjs/e2etest/projectConfig.test.js +111 -0
- package/lib-commonjs/e2etest/projectConfig.test.js.map +1 -0
- package/lib-commonjs/e2etest/projectConfig.utils.d.ts +8 -0
- package/lib-commonjs/e2etest/projectConfig.utils.js +77 -0
- package/lib-commonjs/e2etest/projectConfig.utils.js.map +1 -0
- package/lib-commonjs/e2etest/runWindows.test.d.ts +6 -0
- package/lib-commonjs/e2etest/runWindows.test.js +61 -0
- package/lib-commonjs/e2etest/runWindows.test.js.map +1 -0
- package/lib-commonjs/generator-common/index.d.ts +16 -0
- package/lib-commonjs/generator-common/index.js +60 -39
- package/lib-commonjs/generator-common/index.js.map +1 -1
- package/lib-commonjs/generator-windows/index.d.ts +2 -2
- package/lib-commonjs/generator-windows/index.js +265 -182
- package/lib-commonjs/generator-windows/index.js.map +1 -1
- package/lib-commonjs/healthChecks.d.ts +2 -0
- package/lib-commonjs/healthChecks.js +88 -0
- package/lib-commonjs/healthChecks.js.map +1 -0
- package/lib-commonjs/index.d.ts +5 -0
- package/lib-commonjs/index.js +28 -8
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/runWindows/runWindows.js +239 -52
- package/lib-commonjs/runWindows/runWindows.js.map +1 -1
- package/lib-commonjs/runWindows/runWindowsOptions.d.ts +14 -10
- package/lib-commonjs/runWindows/runWindowsOptions.js +15 -11
- package/lib-commonjs/runWindows/runWindowsOptions.js.map +1 -1
- package/lib-commonjs/runWindows/utils/autolink.d.ts +88 -1
- package/lib-commonjs/runWindows/utils/autolink.js +594 -260
- package/lib-commonjs/runWindows/utils/autolink.js.map +1 -1
- package/lib-commonjs/runWindows/utils/build.d.ts +1 -2
- package/lib-commonjs/runWindows/utils/build.js +24 -31
- package/lib-commonjs/runWindows/utils/build.js.map +1 -1
- package/lib-commonjs/runWindows/utils/checkRequirements.js +11 -7
- package/lib-commonjs/runWindows/utils/checkRequirements.js.map +1 -1
- package/lib-commonjs/runWindows/utils/commandWithProgress.d.ts +11 -3
- package/lib-commonjs/runWindows/utils/commandWithProgress.js +58 -22
- package/lib-commonjs/runWindows/utils/commandWithProgress.js.map +1 -1
- package/lib-commonjs/runWindows/utils/deploy.d.ts +1 -1
- package/lib-commonjs/runWindows/utils/deploy.js +168 -82
- package/lib-commonjs/runWindows/utils/deploy.js.map +1 -1
- package/lib-commonjs/runWindows/utils/info.js +5 -2
- package/lib-commonjs/runWindows/utils/info.js.map +1 -1
- package/lib-commonjs/runWindows/utils/msbuildtools.d.ts +11 -5
- package/lib-commonjs/runWindows/utils/msbuildtools.js +148 -64
- package/lib-commonjs/runWindows/utils/msbuildtools.js.map +1 -1
- package/lib-commonjs/runWindows/utils/telemetryHelpers.d.ts +29 -0
- package/lib-commonjs/runWindows/utils/telemetryHelpers.js +113 -0
- package/lib-commonjs/runWindows/utils/telemetryHelpers.js.map +1 -0
- package/lib-commonjs/runWindows/utils/version.d.ts +4 -4
- package/lib-commonjs/runWindows/utils/version.js.map +1 -1
- package/lib-commonjs/runWindows/utils/vsInstalls.d.ts +4 -1
- package/lib-commonjs/runWindows/utils/vsInstalls.js +22 -7
- package/lib-commonjs/runWindows/utils/vsInstalls.js.map +1 -1
- package/lib-commonjs/runWindows/utils/vstools.d.ts +1 -0
- package/lib-commonjs/runWindows/utils/vstools.js +40 -27
- package/lib-commonjs/runWindows/utils/vstools.js.map +1 -1
- package/lib-commonjs/runWindows/utils/winappdeploytool.d.ts +3 -3
- package/lib-commonjs/runWindows/utils/winappdeploytool.js +17 -14
- package/lib-commonjs/runWindows/utils/winappdeploytool.js.map +1 -1
- package/package.json +40 -22
- package/powershell/Add-AppDevPackage.ps1 +2 -2
- package/powershell/Eval-MsBuildProperties.ps1 +156 -0
- package/powershell/WindowsStoreAppUtils.ps1 +10 -0
- package/CHANGELOG.json +0 -185
- package/CHANGELOG.md +0 -93
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
# Copyright (c) Microsoft Corporation.
|
|
2
|
+
# Licensed under the MIT License.
|
|
3
|
+
#
|
|
4
|
+
# Eval-MsBuildProperties.ps1
|
|
5
|
+
#
|
|
6
|
+
# This script lets you determine the final values of MSBUILD properties for a
|
|
7
|
+
# given solution and project file. Simply pass in a comma delimited list of
|
|
8
|
+
# property names and you'll get a JSON blob of evaluated values.
|
|
9
|
+
#
|
|
10
|
+
# For example, from the root of the repo:
|
|
11
|
+
#
|
|
12
|
+
# .\packages\@react-native-windows\cli\powershell\Eval-MsBuildProperties.ps1 -SolutionFile 'vnext\Microsoft.ReactNative.sln' -ProjectFile 'vnext\Microsoft.ReactNative\Microsoft.ReactNative.vcxproj' -PropertyNames 'ProjectGUID,ProjectName'
|
|
13
|
+
#
|
|
14
|
+
# will output:
|
|
15
|
+
#
|
|
16
|
+
# {
|
|
17
|
+
# "ProjectGuid": "{f7d32bd0-2749-483e-9a0d-1635ef7e3136}",
|
|
18
|
+
# "ProjectName": "Microsoft.ReactNative"
|
|
19
|
+
# }
|
|
20
|
+
#
|
|
21
|
+
|
|
22
|
+
param(
|
|
23
|
+
[Parameter(Mandatory = $true)]
|
|
24
|
+
[String]$SolutionFile,
|
|
25
|
+
[Parameter(Mandatory = $true)]
|
|
26
|
+
[String]$ProjectFile,
|
|
27
|
+
[Parameter()]
|
|
28
|
+
[String]$PropertyNames = "",
|
|
29
|
+
[Parameter()]
|
|
30
|
+
[String]$MSBuildPath,
|
|
31
|
+
[Parameter()]
|
|
32
|
+
[String]$ExtraMSBuildProps
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
function Get-MSBuildPath {
|
|
36
|
+
$vsWhere = "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe"
|
|
37
|
+
if (!(Test-Path $vsWhere)) {
|
|
38
|
+
throw "Unable to find vswhere.exe."
|
|
39
|
+
}
|
|
40
|
+
$vsPath = & $vsWhere -version 16.5 -property installationPath;
|
|
41
|
+
return "$vsPath\MSBuild\Current\Bin";
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
function Get-MSBuildProperties {
|
|
45
|
+
param (
|
|
46
|
+
[Parameter(Mandatory = $true)]
|
|
47
|
+
[String]$MSBuildPath,
|
|
48
|
+
[Parameter(Mandatory = $true)]
|
|
49
|
+
[String]$SolutionPath,
|
|
50
|
+
[Parameter(Mandatory = $true)]
|
|
51
|
+
[String]$ProjectPath,
|
|
52
|
+
[Parameter()]
|
|
53
|
+
[String[]]$PropertyNames = @(),
|
|
54
|
+
[Parameter()]
|
|
55
|
+
[String]$ExtraMSBuildProps
|
|
56
|
+
)
|
|
57
|
+
|
|
58
|
+
if (!(Test-Path (Join-Path $MSBuildPath "MSBuild.exe"))) {
|
|
59
|
+
throw "Unable to find MSBuild.exe in $MSBuildPath"
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
if (!(Test-Path (Join-Path $MSBuildPath "MSBuild.exe"))) {
|
|
63
|
+
throw "Unable to find Microsoft.Build.dll in $MSBuildPath"
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
# Method to intercept resolution of assemblies to add MSBuild's path
|
|
67
|
+
$onAssemblyResolveEventHandler = [System.ResolveEventHandler] {
|
|
68
|
+
param($s, $e)
|
|
69
|
+
|
|
70
|
+
# Figure out which assembly to look for
|
|
71
|
+
$assemblyName = $e.Name.Substring(0, $e.Name.IndexOf(", "));
|
|
72
|
+
$assemblyPath = "$MSBuildPath\$assemblyName.dll"
|
|
73
|
+
|
|
74
|
+
# Search for the assembly in the MSBuild directory
|
|
75
|
+
if (Test-Path $assemblyPath) {
|
|
76
|
+
# Found the assembly!
|
|
77
|
+
return [System.Reflection.Assembly]::LoadFrom("$MSBuildPath\$assemblyName.dll");
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
# Unable to find the assembly
|
|
81
|
+
return $null
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
# Wire-up assembly resolution event handler
|
|
85
|
+
[System.AppDomain]::CurrentDomain.add_AssemblyResolve($onAssemblyResolveEventHandler)
|
|
86
|
+
|
|
87
|
+
# Load Microsoft.Build.dll into script
|
|
88
|
+
Add-Type -Path "$MSBuildPath\Microsoft.Build.dll" | Out-Null
|
|
89
|
+
|
|
90
|
+
# Build a local project collection
|
|
91
|
+
$projectCollection = [Microsoft.Build.Evaluation.ProjectCollection]::new()
|
|
92
|
+
|
|
93
|
+
try {
|
|
94
|
+
# Build a temporary "metaproj" of the solution file so it can be processed
|
|
95
|
+
${env:MSBUILDEMITSOLUTION} = 1
|
|
96
|
+
& $MSBuildPath\MSBuild.exe $SolutionPath | Out-Null
|
|
97
|
+
|
|
98
|
+
# Process solution
|
|
99
|
+
$solution = [Microsoft.Build.Evaluation.Project]::new("$SolutionPath.metaproj", $null, "Current", $projectCollection)
|
|
100
|
+
}
|
|
101
|
+
finally {
|
|
102
|
+
# Clean up "metaproj" files
|
|
103
|
+
${env:MSBUILDEMITSOLUTION} = 0
|
|
104
|
+
Remove-Item -Path @("$SolutionPath.metaproj", "$SolutionPath.metaproj.tmp") | Out-Null
|
|
105
|
+
Get-ChildItem * -Include *.metaproj -Recurse | Remove-Item | Out-Null
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
# Evaluate all of the Solution* properties and save into a collection
|
|
109
|
+
$globalProps = New-Object 'System.Collections.Generic.Dictionary[String,String]'
|
|
110
|
+
$solution.Properties | ForEach-Object -Process {
|
|
111
|
+
if ($_.Name.StartsWith("Solution")) {
|
|
112
|
+
$globalProps.Add($_.Name, $_.EvaluatedValue)
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
# Evaluate all extra build props and save into the collection
|
|
117
|
+
$extraPropsTable = ConvertFrom-StringData -StringData $ExtraMSBuildProps.Replace(',', "`n")
|
|
118
|
+
$extraPropsTable.Keys | ForEach-Object -Process {
|
|
119
|
+
$globalProps[$_] = $extraPropsTable[$_]
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
# Process the project file (with the Solution* properties we calculated before)
|
|
123
|
+
$project = [Microsoft.Build.Evaluation.Project]::new("$ProjectPath", $globalProps, "Current", $projectCollection)
|
|
124
|
+
|
|
125
|
+
# Create object to hold evaluated property key value pairs
|
|
126
|
+
$evaluatedProps = @{}
|
|
127
|
+
|
|
128
|
+
# Look for the specified PropertyNames and evaluate them
|
|
129
|
+
$project.Properties | ForEach-Object -Process {
|
|
130
|
+
if (($PropertyNames.Length -eq 0) -or ($PropertyNames -contains $_.Name)) {
|
|
131
|
+
$evaluatedProps[$_.Name] = $_.EvaluatedValue;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
# Output as JSON
|
|
136
|
+
Write-Output (ConvertTo-Json $evaluatedProps)
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
# Main
|
|
140
|
+
|
|
141
|
+
if ($MSBuildPath -and (Test-Path $MSBuildPath)) {
|
|
142
|
+
if (Test-Path $MSBuildPath -PathType Leaf) {
|
|
143
|
+
# It's a file (probably msbuild.exe), just get the folder path
|
|
144
|
+
$MSBuildPath = [System.IO.Path]::GetDirectoryName($MSBuildPath)
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
else {
|
|
148
|
+
# Use simple fallback logic in this script to find MSBuild path
|
|
149
|
+
$MSBuildPath = Get-MSBuildPath
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
# Get the full absolute paths to the solution and projects
|
|
153
|
+
$SolutionPath = Convert-Path $SolutionFile
|
|
154
|
+
$ProjectPath = Convert-Path $ProjectFile
|
|
155
|
+
|
|
156
|
+
Get-MSBuildProperties -MSBuildPath $MSBuildPath -SolutionPath $SolutionPath -ProjectPath $ProjectPath -PropertyNames $PropertyNames.Split(',', [System.StringSplitOptions]::RemoveEmptyEntries) -ExtraMSBuildProps $ExtraMSBuildProps
|
|
@@ -143,7 +143,17 @@ function CheckIfNeedInstallCertificate
|
|
|
143
143
|
)
|
|
144
144
|
|
|
145
145
|
$PackagePath = Get-ChildItem (Join-Path $ScriptDir "*.appx") | Where-Object { $_.Mode -NotMatch "d" }
|
|
146
|
+
if ($PackagePath -eq $null)
|
|
147
|
+
{
|
|
148
|
+
$PackagePath = Get-ChildItem (Join-Path $ScriptDir "*.msix") | Where-Object { $_.Mode -NotMatch "d" }
|
|
149
|
+
}
|
|
150
|
+
|
|
146
151
|
$BundlePath = Get-ChildItem (Join-Path $ScriptDir "*.appxbundle") | Where-Object { $_.Mode -NotMatch "d" }
|
|
152
|
+
if ($BundlePath -eq $null)
|
|
153
|
+
{
|
|
154
|
+
$BundlePath = Get-ChildItem (Join-Path $ScriptDir "*.msixbundle") | Where-Object { $_.Mode -NotMatch "d" }
|
|
155
|
+
}
|
|
156
|
+
|
|
147
157
|
# There must be exactly 1 package/bundle
|
|
148
158
|
if (($PackagePath.Count + $BundlePath.Count) -lt 1)
|
|
149
159
|
{
|
package/CHANGELOG.json
DELETED
|
@@ -1,185 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@react-native-windows/cli",
|
|
3
|
-
"entries": [
|
|
4
|
-
{
|
|
5
|
-
"date": "Mon, 14 Sep 2020 21:58:24 GMT",
|
|
6
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.13",
|
|
7
|
-
"version": "0.0.0-canary.13",
|
|
8
|
-
"comments": {
|
|
9
|
-
"prerelease": [
|
|
10
|
-
{
|
|
11
|
-
"comment": "Reconcile package versions",
|
|
12
|
-
"author": "ngerlem@microsoft.com",
|
|
13
|
-
"commit": "8adedcfb2ce6492a4a7ede59e0f9188dc205d659",
|
|
14
|
-
"package": "@react-native-windows/cli"
|
|
15
|
-
}
|
|
16
|
-
]
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
"date": "Wed, 09 Sep 2020 05:06:35 GMT",
|
|
21
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.11",
|
|
22
|
-
"version": "0.0.0-canary.11",
|
|
23
|
-
"comments": {
|
|
24
|
-
"prerelease": [
|
|
25
|
-
{
|
|
26
|
-
"comment": "Enable @typescript-eslint/no-floating-promises",
|
|
27
|
-
"author": "ngerlem@microsoft.com",
|
|
28
|
-
"commit": "62f3bb771a129f9cb81bd826827bf4001821a684",
|
|
29
|
-
"package": "@react-native-windows/cli"
|
|
30
|
-
}
|
|
31
|
-
]
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"date": "Wed, 02 Sep 2020 05:05:16 GMT",
|
|
36
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.10",
|
|
37
|
-
"version": "0.0.0-canary.10",
|
|
38
|
-
"comments": {
|
|
39
|
-
"prerelease": [
|
|
40
|
-
{
|
|
41
|
-
"comment": "Keep Templates in react-native-windows Package",
|
|
42
|
-
"author": "ngerlem@microsoft.com",
|
|
43
|
-
"commit": "aad763dd75ffe79e21495a87efbf0e2e583d66eb",
|
|
44
|
-
"package": "@react-native-windows/cli"
|
|
45
|
-
}
|
|
46
|
-
]
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"date": "Fri, 28 Aug 2020 05:06:54 GMT",
|
|
51
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.9",
|
|
52
|
-
"version": "0.0.0-canary.9",
|
|
53
|
-
"comments": {
|
|
54
|
-
"prerelease": [
|
|
55
|
-
{
|
|
56
|
-
"comment": "Fixed templates so C++ apps can consume C# native modules",
|
|
57
|
-
"author": "jthysell@microsoft.com",
|
|
58
|
-
"commit": "db6213f3b9ec6553068e54809c72fceeeb7f0731",
|
|
59
|
-
"package": "@react-native-windows/cli"
|
|
60
|
-
}
|
|
61
|
-
]
|
|
62
|
-
}
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
"date": "Wed, 26 Aug 2020 05:07:06 GMT",
|
|
66
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.8",
|
|
67
|
-
"version": "0.0.0-canary.8",
|
|
68
|
-
"comments": {
|
|
69
|
-
"prerelease": [
|
|
70
|
-
{
|
|
71
|
-
"comment": "Fix deploy bug where a framework package is installed for one arch but not the one that we are building for",
|
|
72
|
-
"author": "asklar@winse.microsoft.com",
|
|
73
|
-
"commit": "3d857e5dfc8b6191793e8c9cf7d8044fa18d8d9f",
|
|
74
|
-
"package": "@react-native-windows/cli"
|
|
75
|
-
}
|
|
76
|
-
]
|
|
77
|
-
}
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
"date": "Tue, 25 Aug 2020 05:05:08 GMT",
|
|
81
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.7",
|
|
82
|
-
"version": "0.0.0-canary.7",
|
|
83
|
-
"comments": {
|
|
84
|
-
"prerelease": [
|
|
85
|
-
{
|
|
86
|
-
"comment": "Default run-windows to disabling parallel MSBuild When Machine Has < 16GB of Memory",
|
|
87
|
-
"author": "ngerlem@microsoft.com",
|
|
88
|
-
"commit": "c144d4a27abcdc6f7402578be8b7ad7f39310dff",
|
|
89
|
-
"package": "@react-native-windows/cli"
|
|
90
|
-
}
|
|
91
|
-
]
|
|
92
|
-
}
|
|
93
|
-
},
|
|
94
|
-
{
|
|
95
|
-
"date": "Fri, 21 Aug 2020 05:04:58 GMT",
|
|
96
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.5",
|
|
97
|
-
"version": "0.0.0-canary.5",
|
|
98
|
-
"comments": {
|
|
99
|
-
"none": [
|
|
100
|
-
{
|
|
101
|
-
"comment": "Upgrade to eslint 6.8.0",
|
|
102
|
-
"author": "ngerlem@microsoft.com",
|
|
103
|
-
"commit": "68f7ba47793f4f1638be59ee9cb8ba68a70ae0cb",
|
|
104
|
-
"package": "@react-native-windows/cli"
|
|
105
|
-
}
|
|
106
|
-
]
|
|
107
|
-
}
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
"date": "Thu, 20 Aug 2020 05:05:23 GMT",
|
|
111
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.5",
|
|
112
|
-
"version": "0.0.0-canary.5",
|
|
113
|
-
"comments": {
|
|
114
|
-
"prerelease": [
|
|
115
|
-
{
|
|
116
|
-
"comment": "Add --singleproc to run-windows",
|
|
117
|
-
"author": "asklar@microsoft.com",
|
|
118
|
-
"commit": "82bf0682e141a3cf8c53db9bc69edc44411d00a7",
|
|
119
|
-
"package": "@react-native-windows/cli"
|
|
120
|
-
}
|
|
121
|
-
]
|
|
122
|
-
}
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
"date": "Wed, 19 Aug 2020 05:04:41 GMT",
|
|
126
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.4",
|
|
127
|
-
"version": "0.0.0-canary.4",
|
|
128
|
-
"comments": {
|
|
129
|
-
"prerelease": [
|
|
130
|
-
{
|
|
131
|
-
"comment": "Fixing config and autolinking",
|
|
132
|
-
"author": "jthysell@microsoft.com",
|
|
133
|
-
"commit": "286f393305bb13cf5982545d4e6b7de68e9a35c9",
|
|
134
|
-
"package": "@react-native-windows/cli"
|
|
135
|
-
}
|
|
136
|
-
]
|
|
137
|
-
}
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
"date": "Fri, 14 Aug 2020 05:05:34 GMT",
|
|
141
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.3",
|
|
142
|
-
"version": "0.0.0-canary.3",
|
|
143
|
-
"comments": {
|
|
144
|
-
"prerelease": [
|
|
145
|
-
{
|
|
146
|
-
"comment": "Disable autolinking check in msbuild when using `react-native run-windows`",
|
|
147
|
-
"author": "jthysell@microsoft.com",
|
|
148
|
-
"commit": "917b8585d4d8ac94140ad2dff538de6c5b1bddc8",
|
|
149
|
-
"package": "@react-native-windows/cli"
|
|
150
|
-
}
|
|
151
|
-
]
|
|
152
|
-
}
|
|
153
|
-
},
|
|
154
|
-
{
|
|
155
|
-
"date": "Tue, 11 Aug 2020 07:36:05 GMT",
|
|
156
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.2",
|
|
157
|
-
"version": "0.0.0-canary.2",
|
|
158
|
-
"comments": {
|
|
159
|
-
"prerelease": [
|
|
160
|
-
{
|
|
161
|
-
"comment": "Make C# CodeGen the default",
|
|
162
|
-
"author": "dannyvv@microsoft.com",
|
|
163
|
-
"commit": "7a65915e82d6bc6884e267a8c96d0fa7fadb0e9e",
|
|
164
|
-
"package": "@react-native-windows/cli"
|
|
165
|
-
}
|
|
166
|
-
]
|
|
167
|
-
}
|
|
168
|
-
},
|
|
169
|
-
{
|
|
170
|
-
"date": "Tue, 28 Jul 2020 05:06:13 GMT",
|
|
171
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.1",
|
|
172
|
-
"version": "0.0.0-canary.1",
|
|
173
|
-
"comments": {
|
|
174
|
-
"prerelease": [
|
|
175
|
-
{
|
|
176
|
-
"comment": "Separate local-cli into its own package",
|
|
177
|
-
"author": "ngerlem@microsoft.com",
|
|
178
|
-
"commit": "fbb4352a015533ebaa77a8d3ea497850a0f67c3f",
|
|
179
|
-
"package": "@react-native-windows/cli"
|
|
180
|
-
}
|
|
181
|
-
]
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
]
|
|
185
|
-
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
# Change Log - @react-native-windows/cli
|
|
2
|
-
|
|
3
|
-
This log was last generated on Mon, 14 Sep 2020 21:58:24 GMT and should not be manually modified.
|
|
4
|
-
|
|
5
|
-
<!-- Start content -->
|
|
6
|
-
|
|
7
|
-
## 0.0.0-canary.13
|
|
8
|
-
|
|
9
|
-
Mon, 14 Sep 2020 21:58:24 GMT
|
|
10
|
-
|
|
11
|
-
### Changes
|
|
12
|
-
|
|
13
|
-
- Reconcile package versions (ngerlem@microsoft.com)
|
|
14
|
-
|
|
15
|
-
## 0.0.0-canary.11
|
|
16
|
-
|
|
17
|
-
Wed, 09 Sep 2020 05:06:35 GMT
|
|
18
|
-
|
|
19
|
-
### Changes
|
|
20
|
-
|
|
21
|
-
- Enable @typescript-eslint/no-floating-promises (ngerlem@microsoft.com)
|
|
22
|
-
|
|
23
|
-
## 0.0.0-canary.10
|
|
24
|
-
|
|
25
|
-
Wed, 02 Sep 2020 05:05:16 GMT
|
|
26
|
-
|
|
27
|
-
### Changes
|
|
28
|
-
|
|
29
|
-
- Keep Templates in react-native-windows Package (ngerlem@microsoft.com)
|
|
30
|
-
|
|
31
|
-
## 0.0.0-canary.9
|
|
32
|
-
|
|
33
|
-
Fri, 28 Aug 2020 05:06:54 GMT
|
|
34
|
-
|
|
35
|
-
### Changes
|
|
36
|
-
|
|
37
|
-
- Fixed templates so C++ apps can consume C# native modules (jthysell@microsoft.com)
|
|
38
|
-
|
|
39
|
-
## 0.0.0-canary.8
|
|
40
|
-
|
|
41
|
-
Wed, 26 Aug 2020 05:07:06 GMT
|
|
42
|
-
|
|
43
|
-
### Changes
|
|
44
|
-
|
|
45
|
-
- Fix deploy bug where a framework package is installed for one arch but not the one that we are building for (asklar@winse.microsoft.com)
|
|
46
|
-
|
|
47
|
-
## 0.0.0-canary.7
|
|
48
|
-
|
|
49
|
-
Tue, 25 Aug 2020 05:05:08 GMT
|
|
50
|
-
|
|
51
|
-
### Changes
|
|
52
|
-
|
|
53
|
-
- Default run-windows to disabling parallel MSBuild When Machine Has < 16GB of Memory (ngerlem@microsoft.com)
|
|
54
|
-
|
|
55
|
-
## 0.0.0-canary.5
|
|
56
|
-
|
|
57
|
-
Thu, 20 Aug 2020 05:05:23 GMT
|
|
58
|
-
|
|
59
|
-
### Changes
|
|
60
|
-
|
|
61
|
-
- Add --singleproc to run-windows (asklar@microsoft.com)
|
|
62
|
-
|
|
63
|
-
## 0.0.0-canary.4
|
|
64
|
-
|
|
65
|
-
Wed, 19 Aug 2020 05:04:41 GMT
|
|
66
|
-
|
|
67
|
-
### Changes
|
|
68
|
-
|
|
69
|
-
- Fixing config and autolinking (jthysell@microsoft.com)
|
|
70
|
-
|
|
71
|
-
## 0.0.0-canary.3
|
|
72
|
-
|
|
73
|
-
Fri, 14 Aug 2020 05:05:34 GMT
|
|
74
|
-
|
|
75
|
-
### Changes
|
|
76
|
-
|
|
77
|
-
- Disable autolinking check in msbuild when using `react-native run-windows` (jthysell@microsoft.com)
|
|
78
|
-
|
|
79
|
-
## 0.0.0-canary.2
|
|
80
|
-
|
|
81
|
-
Tue, 11 Aug 2020 07:36:05 GMT
|
|
82
|
-
|
|
83
|
-
### Changes
|
|
84
|
-
|
|
85
|
-
- Make C# CodeGen the default (dannyvv@microsoft.com)
|
|
86
|
-
|
|
87
|
-
## 0.0.0-canary.1
|
|
88
|
-
|
|
89
|
-
Tue, 28 Jul 2020 05:06:13 GMT
|
|
90
|
-
|
|
91
|
-
### Changes
|
|
92
|
-
|
|
93
|
-
- Separate local-cli into its own package (ngerlem@microsoft.com)
|