config 3.2.1 → 3.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/History.md CHANGED
@@ -1,3 +1,8 @@
1
+ 3.2.2 / 2019-07-20
2
+ ==================
3
+
4
+ * Fixed delimiter bug in configDirs to match O/S delimiter - @iMoses
5
+
1
6
  3.2.1 / 2019-07-18
2
7
  ==================
3
8
 
package/lib/config.js CHANGED
@@ -666,7 +666,7 @@ util.loadFileConfigs = function(configDir) {
666
666
  * @returns {string[]} fullFilenames - path + filename
667
667
  */
668
668
  util.locateMatchingFiles = function(configDirs, allowedFiles) {
669
- return configDirs.split(':')
669
+ return configDirs.split(Path.delimiter)
670
670
  .reduce(function(files, configDir) {
671
671
  if (configDir) {
672
672
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "config",
3
- "version": "3.2.1",
3
+ "version": "3.2.2",
4
4
  "main": "./lib/config.js",
5
5
  "description": "Configuration control for production node deployments",
6
6
  "author": "Loren West <open_source@lorenwest.com>",