@react-native-windows/cli
Advanced tools
Comparing version 0.66.2 to 0.66.3
@@ -5,3 +5,18 @@ { | ||
{ | ||
"date": "Mon, 24 Jan 2022 16:10:41 GMT", | ||
"date": "Mon, 21 Feb 2022 16:09:24 GMT", | ||
"tag": "@react-native-windows/cli_v0.66.3", | ||
"version": "0.66.3", | ||
"comments": { | ||
"patch": [ | ||
{ | ||
"comment": "[0.66] fix(cli): fix cache not being used when there are no dependencies", | ||
"author": "jthysell@microsoft.com", | ||
"commit": "27bb0026bd74e3ad2af62a11160e8c7c8eaf29d2", | ||
"package": "@react-native-windows/cli" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"date": "Mon, 24 Jan 2022 16:11:33 GMT", | ||
"tag": "@react-native-windows/cli_v0.66.2", | ||
@@ -8,0 +23,0 @@ "version": "0.66.2", |
# Change Log - @react-native-windows/cli | ||
This log was last generated on Mon, 24 Jan 2022 16:10:41 GMT and should not be manually modified. | ||
This log was last generated on Mon, 21 Feb 2022 16:09:24 GMT and should not be manually modified. | ||
<!-- Start content --> | ||
## 0.66.3 | ||
Mon, 21 Feb 2022 16:09:24 GMT | ||
### Patches | ||
- [0.66] fix(cli): fix cache not being used when there are no dependencies (jthysell@microsoft.com) | ||
## 0.66.2 | ||
Mon, 24 Jan 2022 16:10:41 GMT | ||
Mon, 24 Jan 2022 16:11:33 GMT | ||
@@ -11,0 +19,0 @@ ### Patches |
@@ -49,3 +49,3 @@ /** | ||
/** Cache of dependencies */ | ||
private readonly windowsDependencies; | ||
private windowsDependencies; | ||
private getWindowsDependencies; | ||
@@ -52,0 +52,0 @@ /** |
@@ -51,4 +51,2 @@ "use strict"; | ||
this.options = options; | ||
/** Cache of dependencies */ | ||
this.windowsDependencies = {}; | ||
this.changesNecessary = false; | ||
@@ -261,3 +259,4 @@ if (!('windows' in this.projectConfig) || | ||
getWindowsDependencies() { | ||
if (Object.keys(this.windowsDependencies).length === 0) { | ||
if (!this.windowsDependencies) { | ||
this.windowsDependencies = {}; | ||
for (const dependencyName of Object.keys(this.dependenciesConfig)) { | ||
@@ -264,0 +263,0 @@ const windowsDependency = this |
{ | ||
"name": "@react-native-windows/cli", | ||
"version": "0.66.2", | ||
"version": "0.66.3", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "main": "lib-commonjs/index.js", |
Sorry, the diff of this file is not supported yet
676383
6814