Socket
Socket
Sign inDemoInstall

convict

Package Overview
Dependencies
Maintainers
9
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

convict - npm Package Compare versions

Comparing version 4.3.0 to 4.3.1

5

CHANGELOG.md

@@ -8,2 +8,7 @@ # Change Log

## [4.3.1] - 2018-06-07
### Fixed
- Handle loading empty files #257 (Paul Colleoni @polco)
## [4.3.0] - 2018-06-02

@@ -10,0 +15,0 @@ ### Fixed

6

lib/convict.js

@@ -606,3 +606,7 @@ /**

paths.forEach(function(path) {
overlay(loadFile(path), self._instance, self._schema);
// Support empty config files #253
const result = loadFile(path);
if (result) {
overlay(result, self._instance, self._schema);
}
});

@@ -609,0 +613,0 @@ // environment and arguments always overrides config files

2

package.json

@@ -13,3 +13,3 @@ {

],
"version": "4.3.0",
"version": "4.3.1",
"license": "Apache-2.0",

@@ -16,0 +16,0 @@ "homepage": "https://github.com/mozilla/node-convict",

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