Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

lz-node-utils

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lz-node-utils - npm Package Compare versions

Comparing version 0.2.0 to 0.2.2

10

CHANGELOG.md

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

2

lib/expandSourceFiles.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'
}
};
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