New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@rushstack/heft-config-file

Package Overview
Dependencies
Maintainers
3
Versions
146
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rushstack/heft-config-file - npm Package Compare versions

Comparing version 0.3.10 to 0.3.11

12

CHANGELOG.json

@@ -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",

9

CHANGELOG.md
# 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

2

dist/heft-config-file.d.ts

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc