@rushstack/heft-config-file
Advanced tools
Comparing version 0.3.10 to 0.3.11
@@ -5,2 +5,14 @@ { | ||
{ | ||
"version": "0.3.11", | ||
"tag": "@rushstack/heft-config-file_v0.3.11", | ||
"date": "Fri, 06 Nov 2020 16:09:30 GMT", | ||
"comments": { | ||
"patch": [ | ||
{ | ||
"comment": "Fix an issue where an error would be thrown if a value was omitted in a parent configuration file." | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"version": "0.3.10", | ||
@@ -7,0 +19,0 @@ "tag": "@rushstack/heft-config-file_v0.3.10", |
# Change Log - @rushstack/heft-config-file | ||
This log was last generated on Fri, 30 Oct 2020 06:38:39 GMT and should not be manually modified. | ||
This log was last generated on Fri, 06 Nov 2020 16:09:30 GMT and should not be manually modified. | ||
## 0.3.11 | ||
Fri, 06 Nov 2020 16:09:30 GMT | ||
### Patches | ||
- Fix an issue where an error would be thrown if a value was omitted in a parent configuration file. | ||
## 0.3.10 | ||
@@ -6,0 +13,0 @@ Fri, 30 Oct 2020 06:38:39 GMT |
@@ -38,3 +38,3 @@ import { RigConfig } from '@rushstack/rig-package'; | ||
*/ | ||
getPropertyOriginalValue<TParentProperty extends object, TValue>(options: IOriginalValueOptions<TParentProperty>): TValue; | ||
getPropertyOriginalValue<TParentProperty extends object, TValue>(options: IOriginalValueOptions<TParentProperty>): TValue | undefined; | ||
private _loadConfigurationFileInnerWithCacheAsync; | ||
@@ -41,0 +41,0 @@ private _loadConfigurationFileInnerAsync; |
@@ -149,3 +149,3 @@ import { Terminal } from '@rushstack/node-core-library'; | ||
*/ | ||
getPropertyOriginalValue<TParentProperty extends object, TValue>(options: IOriginalValueOptions<TParentProperty>): TValue; | ||
getPropertyOriginalValue<TParentProperty extends object, TValue>(options: IOriginalValueOptions<TParentProperty>): TValue | undefined; | ||
private _loadConfigurationFileInnerWithCacheAsync; | ||
@@ -152,0 +152,0 @@ private _loadConfigurationFileInnerAsync; |
@@ -138,3 +138,5 @@ "use strict"; | ||
} | ||
throw new Error(`No original value could be determined for property "${options.propertyName}"`); | ||
else { | ||
return undefined; | ||
} | ||
} | ||
@@ -141,0 +143,0 @@ async _loadConfigurationFileInnerWithCacheAsync(terminal, resolvedConfigurationFilePath, visitedConfigurationFilePaths, rigConfig) { |
{ | ||
"name": "@rushstack/heft-config-file", | ||
"version": "0.3.10", | ||
"version": "0.3.11", | ||
"description": "Configuration file loader for @rushstack/heft", | ||
@@ -5,0 +5,0 @@ "repository": { |
Sorry, the diff of this file is not supported yet
53869
1192