lz-node-utils
Advanced tools
Comparing version 0.2.0 to 0.2.2
@@ -21,2 +21,10 @@ Changelog | ||
- write tests for, and fix bugs in `loadAppSettings` | ||
- full version bump due to change in `pth` and uncertaintity with compatibaility breakage | ||
- full version bump due to change in `pth` and uncertaintity with compatibaility breakage | ||
# v0.2.1 | ||
- update `expandSourceFiles` to invoke `path.resolve` rather than `path.join`. | ||
# v0.2.2 | ||
- Lint the JS |
@@ -42,3 +42,3 @@ var path = require( 'path' ); | ||
_.each( sourceFileOpts.src, function( src ) { | ||
var globPattern = path.join( cwd, src ); | ||
var globPattern = path.resolve( cwd, src ); | ||
fileList.push( file.expand( globPattern ) ); | ||
@@ -45,0 +45,0 @@ } ); |
{ | ||
"name": "lz-node-utils", | ||
"version": "0.2.0", | ||
"version": "0.2.2", | ||
"description": "Useful utility functions for node.", | ||
@@ -5,0 +5,0 @@ "main": "lib/util.js", |
module.exports = { | ||
test: 'custom-default' | ||
} | ||
}; |
module.exports = { | ||
test: 'custom-override' | ||
} | ||
}; |
module.exports = { | ||
test: 'root-default' | ||
} | ||
}; |
module.exports = { | ||
test: 'root-override' | ||
} | ||
}; |
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
30038