Comparing version 3.1.1 to 3.1.2
{ | ||
"name": "configly", | ||
"version": "3.1.1", | ||
"version": "3.1.2", | ||
"description": "A developer-friendly lightweight replacement for the 'config' module that works with custom config directory and pluggable parsers", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -23,3 +23,3 @@ # configly [![NPM Module](https://img.shields.io/npm/v/configly.svg?style=flat)](https://www.npmjs.com/package/configly) | ||
This package is addressing those issues, while keeping easy of use and featureset on par with the original module. | ||
This package is addressing those issues, while keeping easy of use and feature set on par with the original module. | ||
@@ -83,3 +83,3 @@ ## Usage | ||
```javascript | ||
var config = require('configly')('./etc'); // `require('configly')('./etc');` would work the same way` | ||
var config = require('configly')('./etc'); // `require('configly')('etc');` would work the same way` | ||
``` | ||
@@ -155,3 +155,3 @@ | ||
it will either throw (if couldn't read/parse a file) or be silent. | ||
- Configly doesn't provide `get`, `has` methods, it returns pure js object. | ||
- Configly doesn't provide `get`, `has` methods, it always returns pure js (POJO) object. | ||
- Configly doesn't auto-strip comments from JSON files, use `configly.PARSERS['json'] = json5.parse;`. | ||
@@ -158,0 +158,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
22809