@react-native-windows/cli 0.0.0-canary.26 → 0.0.0-canary.261
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 +117 -0
- package/lib-commonjs/commands/autolinkWindows/autolinkWindows.d.ts +88 -0
- package/lib-commonjs/commands/autolinkWindows/autolinkWindows.js +705 -0
- package/lib-commonjs/commands/autolinkWindows/autolinkWindows.js.map +1 -0
- package/lib-commonjs/commands/autolinkWindows/autolinkWindowsOptions.d.ts +14 -0
- package/lib-commonjs/commands/autolinkWindows/autolinkWindowsOptions.js +33 -0
- package/lib-commonjs/commands/autolinkWindows/autolinkWindowsOptions.js.map +1 -0
- package/lib-commonjs/commands/codegenWindows/codegenWindows.d.ts +27 -0
- package/lib-commonjs/commands/codegenWindows/codegenWindows.js +211 -0
- package/lib-commonjs/commands/codegenWindows/codegenWindows.js.map +1 -0
- package/lib-commonjs/commands/codegenWindows/codegenWindowsOptions.d.ts +12 -0
- package/lib-commonjs/commands/codegenWindows/codegenWindowsOptions.js +23 -0
- package/lib-commonjs/commands/codegenWindows/codegenWindowsOptions.js.map +1 -0
- package/lib-commonjs/{config → commands/config}/configUtils.d.ts +141 -93
- package/lib-commonjs/commands/config/configUtils.js +423 -0
- package/lib-commonjs/commands/config/configUtils.js.map +1 -0
- package/lib-commonjs/{config → commands/config}/dependencyConfig.d.ts +38 -37
- package/lib-commonjs/commands/config/dependencyConfig.js +230 -0
- package/lib-commonjs/commands/config/dependencyConfig.js.map +1 -0
- package/lib-commonjs/{config → commands/config}/projectConfig.d.ts +28 -24
- package/lib-commonjs/commands/config/projectConfig.js +191 -0
- package/lib-commonjs/commands/config/projectConfig.js.map +1 -0
- package/lib-commonjs/commands/healthCheck/healthCheckList.d.ts +6 -0
- package/lib-commonjs/commands/healthCheck/healthCheckList.js +21 -0
- package/lib-commonjs/commands/healthCheck/healthCheckList.js.map +1 -0
- package/lib-commonjs/commands/healthCheck/healthChecks.d.ts +7 -0
- package/lib-commonjs/commands/healthCheck/healthChecks.js +124 -0
- package/lib-commonjs/commands/healthCheck/healthChecks.js.map +1 -0
- package/lib-commonjs/commands/initWindows/initWindows.d.ts +46 -0
- package/lib-commonjs/commands/initWindows/initWindows.js +275 -0
- package/lib-commonjs/commands/initWindows/initWindows.js.map +1 -0
- package/lib-commonjs/commands/initWindows/initWindowsOptions.d.ts +16 -0
- package/lib-commonjs/commands/initWindows/initWindowsOptions.js +42 -0
- package/lib-commonjs/commands/initWindows/initWindowsOptions.js.map +1 -0
- package/lib-commonjs/{runWindows → commands/runWindows}/runWindows.d.ts +10 -10
- package/lib-commonjs/commands/runWindows/runWindows.js +322 -0
- package/lib-commonjs/commands/runWindows/runWindows.js.map +1 -0
- package/lib-commonjs/{runWindows → commands/runWindows}/runWindowsOptions.d.ts +56 -52
- package/lib-commonjs/{runWindows → commands/runWindows}/runWindowsOptions.js +132 -131
- package/lib-commonjs/commands/runWindows/runWindowsOptions.js.map +1 -0
- package/lib-commonjs/e2etest/autolink.test.d.ts +6 -0
- package/lib-commonjs/e2etest/autolink.test.js +367 -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/healthChecks.test.d.ts +6 -0
- package/lib-commonjs/e2etest/healthChecks.test.js +31 -0
- package/lib-commonjs/e2etest/healthChecks.test.js.map +1 -0
- package/lib-commonjs/e2etest/initWindows.test.d.ts +6 -0
- package/lib-commonjs/e2etest/initWindows.test.js +110 -0
- package/lib-commonjs/e2etest/initWindows.test.js.map +1 -0
- package/lib-commonjs/e2etest/projectConfig.test.d.ts +6 -0
- package/lib-commonjs/e2etest/projectConfig.test.js +112 -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/e2etest/typesUpToDate.test.d.ts +6 -0
- package/lib-commonjs/e2etest/typesUpToDate.test.js +21 -0
- package/lib-commonjs/e2etest/typesUpToDate.test.js.map +1 -0
- package/lib-commonjs/generator-common/index.d.ts +39 -23
- package/lib-commonjs/generator-common/index.js +242 -221
- package/lib-commonjs/generator-common/index.js.map +1 -1
- package/lib-commonjs/generator-windows/index.d.ts +10 -10
- package/lib-commonjs/generator-windows/index.js +341 -364
- package/lib-commonjs/generator-windows/index.js.map +1 -1
- package/lib-commonjs/index.d.ts +50 -47
- package/lib-commonjs/index.js +77 -39
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/{runWindows/utils → utils}/build.d.ts +12 -13
- package/lib-commonjs/{runWindows/utils → utils}/build.js +89 -91
- package/lib-commonjs/utils/build.js.map +1 -0
- package/lib-commonjs/{runWindows/utils → utils}/checkRequirements.d.ts +6 -6
- package/lib-commonjs/{runWindows/utils → utils}/checkRequirements.js +69 -65
- package/lib-commonjs/utils/checkRequirements.js.map +1 -0
- package/lib-commonjs/{runWindows/utils → utils}/commandWithProgress.d.ts +21 -13
- package/lib-commonjs/{runWindows/utils → utils}/commandWithProgress.js +149 -113
- package/lib-commonjs/utils/commandWithProgress.js.map +1 -0
- package/lib-commonjs/{runWindows/utils → utils}/deploy.d.ts +12 -12
- package/lib-commonjs/utils/deploy.js +354 -0
- package/lib-commonjs/utils/deploy.js.map +1 -0
- package/lib-commonjs/{runWindows/utils → utils}/info.d.ts +6 -6
- package/lib-commonjs/{runWindows/utils → utils}/info.js +28 -25
- package/lib-commonjs/utils/info.js.map +1 -0
- package/lib-commonjs/utils/msbuildtools.d.ts +28 -0
- package/lib-commonjs/utils/msbuildtools.js +281 -0
- package/lib-commonjs/utils/msbuildtools.js.map +1 -0
- package/lib-commonjs/utils/nameHelpers.d.ts +9 -0
- package/lib-commonjs/utils/nameHelpers.js +46 -0
- package/lib-commonjs/utils/nameHelpers.js.map +1 -0
- package/lib-commonjs/utils/pathHelpers.d.ts +9 -0
- package/lib-commonjs/utils/pathHelpers.js +37 -0
- package/lib-commonjs/utils/pathHelpers.js.map +1 -0
- package/lib-commonjs/utils/telemetryHelpers.d.ts +29 -0
- package/lib-commonjs/utils/telemetryHelpers.js +121 -0
- package/lib-commonjs/utils/telemetryHelpers.js.map +1 -0
- package/lib-commonjs/{runWindows/utils → utils}/version.d.ts +19 -19
- package/lib-commonjs/{runWindows/utils → utils}/version.js +109 -109
- package/lib-commonjs/utils/version.js.map +1 -0
- package/lib-commonjs/{runWindows/utils → utils}/vsInstalls.d.ts +34 -34
- package/lib-commonjs/utils/vsInstalls.js +102 -0
- package/lib-commonjs/utils/vsInstalls.js.map +1 -0
- package/lib-commonjs/{runWindows/utils → utils}/vstools.d.ts +16 -15
- package/lib-commonjs/utils/vstools.js +190 -0
- package/lib-commonjs/utils/vstools.js.map +1 -0
- package/lib-commonjs/{runWindows/utils → utils}/winappdeploytool.d.ts +24 -24
- package/lib-commonjs/{runWindows/utils → utils}/winappdeploytool.js +108 -105
- package/lib-commonjs/utils/winappdeploytool.js.map +1 -0
- package/package.json +49 -31
- package/{powershell → src/powershell}/Add-AppDevPackage.ps1 +2 -2
- package/src/powershell/Eval-MsBuildProperties.ps1 +156 -0
- package/{powershell → src/powershell}/WindowsStoreAppUtils.ps1 +10 -0
- package/CHANGELOG.json +0 -413
- package/CHANGELOG.md +0 -200
- package/lib-commonjs/config/configUtils.js +0 -253
- package/lib-commonjs/config/configUtils.js.map +0 -1
- package/lib-commonjs/config/dependencyConfig.js +0 -167
- package/lib-commonjs/config/dependencyConfig.js.map +0 -1
- package/lib-commonjs/config/projectConfig.js +0 -121
- package/lib-commonjs/config/projectConfig.js.map +0 -1
- package/lib-commonjs/runWindows/runWindows.js +0 -159
- package/lib-commonjs/runWindows/runWindows.js.map +0 -1
- package/lib-commonjs/runWindows/runWindowsOptions.js.map +0 -1
- package/lib-commonjs/runWindows/utils/autolink.d.ts +0 -7
- package/lib-commonjs/runWindows/utils/autolink.js +0 -353
- package/lib-commonjs/runWindows/utils/autolink.js.map +0 -1
- package/lib-commonjs/runWindows/utils/build.js.map +0 -1
- package/lib-commonjs/runWindows/utils/checkRequirements.js.map +0 -1
- package/lib-commonjs/runWindows/utils/commandWithProgress.js.map +0 -1
- package/lib-commonjs/runWindows/utils/deploy.js +0 -247
- package/lib-commonjs/runWindows/utils/deploy.js.map +0 -1
- package/lib-commonjs/runWindows/utils/info.js.map +0 -1
- package/lib-commonjs/runWindows/utils/msbuildtools.d.ts +0 -22
- package/lib-commonjs/runWindows/utils/msbuildtools.js +0 -195
- package/lib-commonjs/runWindows/utils/msbuildtools.js.map +0 -1
- package/lib-commonjs/runWindows/utils/version.js.map +0 -1
- package/lib-commonjs/runWindows/utils/vsInstalls.js +0 -70
- package/lib-commonjs/runWindows/utils/vsInstalls.js.map +0 -1
- package/lib-commonjs/runWindows/utils/vstools.js +0 -150
- package/lib-commonjs/runWindows/utils/vstools.js.map +0 -1
- package/lib-commonjs/runWindows/utils/winappdeploytool.js.map +0 -1
|
@@ -107,10 +107,10 @@ function PrintMessageAndExit($ErrorMessage, $ReturnCode)
|
|
|
107
107
|
{
|
|
108
108
|
# Log telemetry data regarding the use of the script if possible.
|
|
109
109
|
# There are three ways that this can be disabled:
|
|
110
|
-
# 1. If the "
|
|
110
|
+
# 1. If the "TelDeps" folder isn't present. This can be excluded at build time by setting the MSBuild property AppxLogTelemetryFromSideloadingScript to false
|
|
111
111
|
# 2. If the SkipLoggingTelemetry switch is passed to this script.
|
|
112
112
|
# 3. If Visual Studio telemetry is disabled via the registry.
|
|
113
|
-
$TelemetryAssembliesFolder = (Join-Path $PSScriptRoot "
|
|
113
|
+
$TelemetryAssembliesFolder = (Join-Path $PSScriptRoot "TelDeps")
|
|
114
114
|
if (!$SkipLoggingTelemetry -And (Test-Path $TelemetryAssembliesFolder))
|
|
115
115
|
{
|
|
116
116
|
$job = Start-Job -FilePath (Join-Path $TelemetryAssembliesFolder "LogSideloadingTelemetry.ps1") -ArgumentList $TelemetryAssembliesFolder, "VS/DesignTools/SideLoadingScript/AddAppDevPackage", $ReturnCode, $ProcessorArchitecture
|
|
@@ -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,413 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@react-native-windows/cli",
|
|
3
|
-
"entries": [
|
|
4
|
-
{
|
|
5
|
-
"date": "Sat, 31 Oct 2020 05:06:14 GMT",
|
|
6
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.26",
|
|
7
|
-
"version": "0.0.0-canary.26",
|
|
8
|
-
"comments": {
|
|
9
|
-
"prerelease": [
|
|
10
|
-
{
|
|
11
|
-
"comment": "Fix Generator Failing to Overwrite Template Files",
|
|
12
|
-
"author": "ngerlem@microsoft.com",
|
|
13
|
-
"commit": "0062f63ad8dd7f9f176fed8d1a4249a8a65c8748",
|
|
14
|
-
"package": "@react-native-windows/cli"
|
|
15
|
-
}
|
|
16
|
-
]
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
"date": "Fri, 30 Oct 2020 05:07:51 GMT",
|
|
21
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.25",
|
|
22
|
-
"version": "0.0.0-canary.25",
|
|
23
|
-
"comments": {
|
|
24
|
-
"prerelease": [
|
|
25
|
-
{
|
|
26
|
-
"comment": "Enable Hermes Bytecode Compilation and SourceMap Creation as Part of Build",
|
|
27
|
-
"author": "ngerlem@microsoft.com",
|
|
28
|
-
"commit": "f9ba026cad45a4d30c95e3a7d2efb7ba28a1b9f7",
|
|
29
|
-
"package": "@react-native-windows/cli"
|
|
30
|
-
}
|
|
31
|
-
]
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"date": "Thu, 29 Oct 2020 05:05:49 GMT",
|
|
36
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.24",
|
|
37
|
-
"version": "0.0.0-canary.24",
|
|
38
|
-
"comments": {
|
|
39
|
-
"prerelease": [
|
|
40
|
-
{
|
|
41
|
-
"comment": "Allow Hermes to be used in C++ projects without modifying source code",
|
|
42
|
-
"author": "ngerlem@microsoft.com",
|
|
43
|
-
"commit": "7e9d80e59fd0b8ca7549eda1a7d5cefc32d6cfbe",
|
|
44
|
-
"package": "@react-native-windows/cli"
|
|
45
|
-
}
|
|
46
|
-
]
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"date": "Sat, 17 Oct 2020 05:06:20 GMT",
|
|
51
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.23",
|
|
52
|
-
"version": "0.0.0-canary.23",
|
|
53
|
-
"comments": {
|
|
54
|
-
"prerelease": [
|
|
55
|
-
{
|
|
56
|
-
"comment": "C# apps have x86 platform=x86 but C++ apps have Win32",
|
|
57
|
-
"author": "asklar@microsoft.com",
|
|
58
|
-
"commit": "cfac7ab1942d3380eb33bb779f571befd10a6bff",
|
|
59
|
-
"package": "@react-native-windows/cli"
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
"comment": "Revert \"Fix project config and package deploy to support the windows code in a different location (#6232)\"",
|
|
63
|
-
"author": "dannyvv@microsoft.com",
|
|
64
|
-
"commit": "0f3c2aafb5bf9a93f03ea9b22c1f7f013bb46b2b",
|
|
65
|
-
"package": "@react-native-windows/cli"
|
|
66
|
-
}
|
|
67
|
-
]
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
|
-
{
|
|
71
|
-
"date": "Fri, 16 Oct 2020 05:04:19 GMT",
|
|
72
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.22",
|
|
73
|
-
"version": "0.0.0-canary.22",
|
|
74
|
-
"comments": {
|
|
75
|
-
"prerelease": [
|
|
76
|
-
{
|
|
77
|
-
"comment": "Fix config and app publish to allow for the windows native source code to live in a different location",
|
|
78
|
-
"author": "dannyvv@microsoft.com",
|
|
79
|
-
"commit": "ceb3c4519d5c0e13e843a0a93f7b39aebfbef94f",
|
|
80
|
-
"package": "@react-native-windows/cli"
|
|
81
|
-
}
|
|
82
|
-
]
|
|
83
|
-
}
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"date": "Fri, 09 Oct 2020 05:06:32 GMT",
|
|
87
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.21",
|
|
88
|
-
"version": "0.0.0-canary.21",
|
|
89
|
-
"comments": {
|
|
90
|
-
"none": [
|
|
91
|
-
{
|
|
92
|
-
"comment": "Update just-scipts (remove npm-registry-fetch)",
|
|
93
|
-
"author": "ngerlem@microsoft.com",
|
|
94
|
-
"commit": "00b2d84b8effce0b7405a67bd4903eed88cb9aaf",
|
|
95
|
-
"package": "@react-native-windows/cli"
|
|
96
|
-
}
|
|
97
|
-
]
|
|
98
|
-
}
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
"date": "Thu, 01 Oct 2020 05:08:11 GMT",
|
|
102
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.21",
|
|
103
|
-
"version": "0.0.0-canary.21",
|
|
104
|
-
"comments": {
|
|
105
|
-
"prerelease": [
|
|
106
|
-
{
|
|
107
|
-
"comment": "ESLint Fixup",
|
|
108
|
-
"author": "ngerlem@microsoft.com",
|
|
109
|
-
"commit": "98c072069c9d9e0d495bfd6f3bdc386b1362f377",
|
|
110
|
-
"package": "@react-native-windows/cli"
|
|
111
|
-
}
|
|
112
|
-
]
|
|
113
|
-
}
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
"date": "Tue, 29 Sep 2020 05:05:53 GMT",
|
|
117
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.20",
|
|
118
|
-
"version": "0.0.0-canary.20",
|
|
119
|
-
"comments": {
|
|
120
|
-
"prerelease": [
|
|
121
|
-
{
|
|
122
|
-
"comment": "Fix run-windows Warnings Using Node 14",
|
|
123
|
-
"author": "ngerlem@microsoft.com",
|
|
124
|
-
"commit": "89b37d236af1c9d5db7af2d28c2d14d1c3189992",
|
|
125
|
-
"package": "@react-native-windows/cli"
|
|
126
|
-
}
|
|
127
|
-
]
|
|
128
|
-
}
|
|
129
|
-
},
|
|
130
|
-
{
|
|
131
|
-
"date": "Fri, 25 Sep 2020 05:05:40 GMT",
|
|
132
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.19",
|
|
133
|
-
"version": "0.0.0-canary.19",
|
|
134
|
-
"comments": {
|
|
135
|
-
"prerelease": [
|
|
136
|
-
{
|
|
137
|
-
"comment": "Fix casing rules for new projects names for `react-native-windows-init`",
|
|
138
|
-
"author": "jthysell@microsoft.com",
|
|
139
|
-
"commit": "9bc6c559fc350480d6d014644c3fbf4882d5a39a",
|
|
140
|
-
"package": "@react-native-windows/cli"
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
"comment": "Add -NoProfile to powershell invocations to ensure deterministic script execution where user profiles do not have the ability to break or change the build outputs",
|
|
144
|
-
"author": "dannyvv@microsoft.com",
|
|
145
|
-
"commit": "34204f8e56810882b1f66fa247f075499a76022d",
|
|
146
|
-
"package": "@react-native-windows/cli"
|
|
147
|
-
}
|
|
148
|
-
]
|
|
149
|
-
}
|
|
150
|
-
},
|
|
151
|
-
{
|
|
152
|
-
"date": "Thu, 24 Sep 2020 05:06:21 GMT",
|
|
153
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.18",
|
|
154
|
-
"version": "0.0.0-canary.18",
|
|
155
|
-
"comments": {
|
|
156
|
-
"prerelease": [
|
|
157
|
-
{
|
|
158
|
-
"comment": "Zero-Config Tests for CLI, react-native-windows-init, react-native-windows-codegen",
|
|
159
|
-
"author": "ngerlem@microsoft.com",
|
|
160
|
-
"commit": "5a96480f422aa7c731d7febb900a3962e1265c08",
|
|
161
|
-
"package": "@react-native-windows/cli"
|
|
162
|
-
}
|
|
163
|
-
]
|
|
164
|
-
}
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
"date": "Mon, 21 Sep 2020 05:06:22 GMT",
|
|
168
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.17",
|
|
169
|
-
"version": "0.0.0-canary.17",
|
|
170
|
-
"comments": {
|
|
171
|
-
"prerelease": [
|
|
172
|
-
{
|
|
173
|
-
"comment": "Fixup eslint config",
|
|
174
|
-
"author": "ngerlem@microsoft.com",
|
|
175
|
-
"commit": "2df3273449486de9e663e26f708fd9bb2cd37c91",
|
|
176
|
-
"package": "@react-native-windows/cli"
|
|
177
|
-
}
|
|
178
|
-
]
|
|
179
|
-
}
|
|
180
|
-
},
|
|
181
|
-
{
|
|
182
|
-
"date": "Sat, 19 Sep 2020 05:05:08 GMT",
|
|
183
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.16",
|
|
184
|
-
"version": "0.0.0-canary.16",
|
|
185
|
-
"comments": {
|
|
186
|
-
"prerelease": [
|
|
187
|
-
{
|
|
188
|
-
"comment": "Adding new native module template support to react-native-windows-init",
|
|
189
|
-
"author": "jthysell@microsoft.com",
|
|
190
|
-
"commit": "c7a42af99fb614652d446ebaee12ea689ade4458",
|
|
191
|
-
"package": "@react-native-windows/cli"
|
|
192
|
-
}
|
|
193
|
-
]
|
|
194
|
-
}
|
|
195
|
-
},
|
|
196
|
-
{
|
|
197
|
-
"date": "Wed, 16 Sep 2020 05:05:28 GMT",
|
|
198
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.15",
|
|
199
|
-
"version": "0.0.0-canary.15",
|
|
200
|
-
"comments": {
|
|
201
|
-
"prerelease": [
|
|
202
|
-
{
|
|
203
|
-
"comment": "Enable trying Previews of VS as a fallback",
|
|
204
|
-
"author": "asklar@winse.microsoft.com",
|
|
205
|
-
"commit": "c30f54a8ba3a605910b43613825b386b62b1675d",
|
|
206
|
-
"package": "@react-native-windows/cli"
|
|
207
|
-
},
|
|
208
|
-
{
|
|
209
|
-
"comment": "Yarn on Windows breaks apps that read from the environment variables",
|
|
210
|
-
"author": "asklar@winse.microsoft.com",
|
|
211
|
-
"commit": "2018f3132087b1f76c48474c8df0b4e7f3b62501",
|
|
212
|
-
"package": "@react-native-windows/cli"
|
|
213
|
-
}
|
|
214
|
-
]
|
|
215
|
-
}
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
"date": "Tue, 15 Sep 2020 05:05:15 GMT",
|
|
219
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.14",
|
|
220
|
-
"version": "0.0.0-canary.14",
|
|
221
|
-
"comments": {
|
|
222
|
-
"prerelease": [
|
|
223
|
-
{
|
|
224
|
-
"comment": "fix ts warning",
|
|
225
|
-
"author": "asklar@microsoft.com",
|
|
226
|
-
"commit": "61a641820532b42034f2ad4a670bdc43b817adac",
|
|
227
|
-
"package": "@react-native-windows/cli"
|
|
228
|
-
}
|
|
229
|
-
]
|
|
230
|
-
}
|
|
231
|
-
},
|
|
232
|
-
{
|
|
233
|
-
"date": "Mon, 14 Sep 2020 22:03:37 GMT",
|
|
234
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.13",
|
|
235
|
-
"version": "0.0.0-canary.13",
|
|
236
|
-
"comments": {
|
|
237
|
-
"prerelease": [
|
|
238
|
-
{
|
|
239
|
-
"comment": "Reconcile package versions",
|
|
240
|
-
"author": "ngerlem@microsoft.com",
|
|
241
|
-
"commit": "8adedcfb2ce6492a4a7ede59e0f9188dc205d659",
|
|
242
|
-
"package": "@react-native-windows/cli"
|
|
243
|
-
}
|
|
244
|
-
]
|
|
245
|
-
}
|
|
246
|
-
},
|
|
247
|
-
{
|
|
248
|
-
"date": "Wed, 09 Sep 2020 05:06:35 GMT",
|
|
249
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.11",
|
|
250
|
-
"version": "0.0.0-canary.11",
|
|
251
|
-
"comments": {
|
|
252
|
-
"prerelease": [
|
|
253
|
-
{
|
|
254
|
-
"comment": "Enable @typescript-eslint/no-floating-promises",
|
|
255
|
-
"author": "ngerlem@microsoft.com",
|
|
256
|
-
"commit": "62f3bb771a129f9cb81bd826827bf4001821a684",
|
|
257
|
-
"package": "@react-native-windows/cli"
|
|
258
|
-
}
|
|
259
|
-
]
|
|
260
|
-
}
|
|
261
|
-
},
|
|
262
|
-
{
|
|
263
|
-
"date": "Wed, 02 Sep 2020 05:05:16 GMT",
|
|
264
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.10",
|
|
265
|
-
"version": "0.0.0-canary.10",
|
|
266
|
-
"comments": {
|
|
267
|
-
"prerelease": [
|
|
268
|
-
{
|
|
269
|
-
"comment": "Keep Templates in react-native-windows Package",
|
|
270
|
-
"author": "ngerlem@microsoft.com",
|
|
271
|
-
"commit": "aad763dd75ffe79e21495a87efbf0e2e583d66eb",
|
|
272
|
-
"package": "@react-native-windows/cli"
|
|
273
|
-
}
|
|
274
|
-
]
|
|
275
|
-
}
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
"date": "Fri, 28 Aug 2020 05:06:54 GMT",
|
|
279
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.9",
|
|
280
|
-
"version": "0.0.0-canary.9",
|
|
281
|
-
"comments": {
|
|
282
|
-
"prerelease": [
|
|
283
|
-
{
|
|
284
|
-
"comment": "Fixed templates so C++ apps can consume C# native modules",
|
|
285
|
-
"author": "jthysell@microsoft.com",
|
|
286
|
-
"commit": "db6213f3b9ec6553068e54809c72fceeeb7f0731",
|
|
287
|
-
"package": "@react-native-windows/cli"
|
|
288
|
-
}
|
|
289
|
-
]
|
|
290
|
-
}
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
"date": "Wed, 26 Aug 2020 05:07:06 GMT",
|
|
294
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.8",
|
|
295
|
-
"version": "0.0.0-canary.8",
|
|
296
|
-
"comments": {
|
|
297
|
-
"prerelease": [
|
|
298
|
-
{
|
|
299
|
-
"comment": "Fix deploy bug where a framework package is installed for one arch but not the one that we are building for",
|
|
300
|
-
"author": "asklar@winse.microsoft.com",
|
|
301
|
-
"commit": "3d857e5dfc8b6191793e8c9cf7d8044fa18d8d9f",
|
|
302
|
-
"package": "@react-native-windows/cli"
|
|
303
|
-
}
|
|
304
|
-
]
|
|
305
|
-
}
|
|
306
|
-
},
|
|
307
|
-
{
|
|
308
|
-
"date": "Tue, 25 Aug 2020 05:05:08 GMT",
|
|
309
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.7",
|
|
310
|
-
"version": "0.0.0-canary.7",
|
|
311
|
-
"comments": {
|
|
312
|
-
"prerelease": [
|
|
313
|
-
{
|
|
314
|
-
"comment": "Default run-windows to disabling parallel MSBuild When Machine Has < 16GB of Memory",
|
|
315
|
-
"author": "ngerlem@microsoft.com",
|
|
316
|
-
"commit": "c144d4a27abcdc6f7402578be8b7ad7f39310dff",
|
|
317
|
-
"package": "@react-native-windows/cli"
|
|
318
|
-
}
|
|
319
|
-
]
|
|
320
|
-
}
|
|
321
|
-
},
|
|
322
|
-
{
|
|
323
|
-
"date": "Fri, 21 Aug 2020 05:04:58 GMT",
|
|
324
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.5",
|
|
325
|
-
"version": "0.0.0-canary.5",
|
|
326
|
-
"comments": {
|
|
327
|
-
"none": [
|
|
328
|
-
{
|
|
329
|
-
"comment": "Upgrade to eslint 6.8.0",
|
|
330
|
-
"author": "ngerlem@microsoft.com",
|
|
331
|
-
"commit": "68f7ba47793f4f1638be59ee9cb8ba68a70ae0cb",
|
|
332
|
-
"package": "@react-native-windows/cli"
|
|
333
|
-
}
|
|
334
|
-
]
|
|
335
|
-
}
|
|
336
|
-
},
|
|
337
|
-
{
|
|
338
|
-
"date": "Thu, 20 Aug 2020 05:05:23 GMT",
|
|
339
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.5",
|
|
340
|
-
"version": "0.0.0-canary.5",
|
|
341
|
-
"comments": {
|
|
342
|
-
"prerelease": [
|
|
343
|
-
{
|
|
344
|
-
"comment": "Add --singleproc to run-windows",
|
|
345
|
-
"author": "asklar@microsoft.com",
|
|
346
|
-
"commit": "82bf0682e141a3cf8c53db9bc69edc44411d00a7",
|
|
347
|
-
"package": "@react-native-windows/cli"
|
|
348
|
-
}
|
|
349
|
-
]
|
|
350
|
-
}
|
|
351
|
-
},
|
|
352
|
-
{
|
|
353
|
-
"date": "Wed, 19 Aug 2020 05:04:41 GMT",
|
|
354
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.4",
|
|
355
|
-
"version": "0.0.0-canary.4",
|
|
356
|
-
"comments": {
|
|
357
|
-
"prerelease": [
|
|
358
|
-
{
|
|
359
|
-
"comment": "Fixing config and autolinking",
|
|
360
|
-
"author": "jthysell@microsoft.com",
|
|
361
|
-
"commit": "286f393305bb13cf5982545d4e6b7de68e9a35c9",
|
|
362
|
-
"package": "@react-native-windows/cli"
|
|
363
|
-
}
|
|
364
|
-
]
|
|
365
|
-
}
|
|
366
|
-
},
|
|
367
|
-
{
|
|
368
|
-
"date": "Fri, 14 Aug 2020 05:05:34 GMT",
|
|
369
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.3",
|
|
370
|
-
"version": "0.0.0-canary.3",
|
|
371
|
-
"comments": {
|
|
372
|
-
"prerelease": [
|
|
373
|
-
{
|
|
374
|
-
"comment": "Disable autolinking check in msbuild when using `react-native run-windows`",
|
|
375
|
-
"author": "jthysell@microsoft.com",
|
|
376
|
-
"commit": "917b8585d4d8ac94140ad2dff538de6c5b1bddc8",
|
|
377
|
-
"package": "@react-native-windows/cli"
|
|
378
|
-
}
|
|
379
|
-
]
|
|
380
|
-
}
|
|
381
|
-
},
|
|
382
|
-
{
|
|
383
|
-
"date": "Tue, 11 Aug 2020 07:36:05 GMT",
|
|
384
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.2",
|
|
385
|
-
"version": "0.0.0-canary.2",
|
|
386
|
-
"comments": {
|
|
387
|
-
"prerelease": [
|
|
388
|
-
{
|
|
389
|
-
"comment": "Make C# CodeGen the default",
|
|
390
|
-
"author": "dannyvv@microsoft.com",
|
|
391
|
-
"commit": "7a65915e82d6bc6884e267a8c96d0fa7fadb0e9e",
|
|
392
|
-
"package": "@react-native-windows/cli"
|
|
393
|
-
}
|
|
394
|
-
]
|
|
395
|
-
}
|
|
396
|
-
},
|
|
397
|
-
{
|
|
398
|
-
"date": "Tue, 28 Jul 2020 05:06:13 GMT",
|
|
399
|
-
"tag": "@react-native-windows/cli_v0.0.0-canary.1",
|
|
400
|
-
"version": "0.0.0-canary.1",
|
|
401
|
-
"comments": {
|
|
402
|
-
"prerelease": [
|
|
403
|
-
{
|
|
404
|
-
"comment": "Separate local-cli into its own package",
|
|
405
|
-
"author": "ngerlem@microsoft.com",
|
|
406
|
-
"commit": "fbb4352a015533ebaa77a8d3ea497850a0f67c3f",
|
|
407
|
-
"package": "@react-native-windows/cli"
|
|
408
|
-
}
|
|
409
|
-
]
|
|
410
|
-
}
|
|
411
|
-
}
|
|
412
|
-
]
|
|
413
|
-
}
|