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

jake

Package Overview
Dependencies
Maintainers
1
Versions
167
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jake - npm Package Compare versions

Comparing version 0.1.16 to 0.1.17

19

lib/file_list.js

@@ -19,11 +19,4 @@ /*

var fs = require('fs')
, glob;
, glob; // Lazy-required
try {
glob = require('glob');
}
catch(e) {
fail('FileList requires glob (https://github.com/isaacs/node-glob). Try `npm install glob`.');
}
// Constants

@@ -77,2 +70,12 @@ // ---------------

// Lazy-require glob so that require of this file in cli.js won't bomb
if (!glob) {
try {
glob = require('glob');
}
catch(e) {
fail('FileList requires glob (https://github.com/isaacs/node-glob). Try `npm install glob`.');
}
}
// List of glob-patterns or specific filenames

@@ -79,0 +82,0 @@ this.pendingAdd = [];

{ "name": "jake"
, "version": "0.1.16"
, "version": "0.1.17"
, "author": "Matthew Eernisse <mde@fleegix.org> (http://fleegix.org)"

@@ -4,0 +4,0 @@ , "bin": { "jake": "./bin/cli.js" }

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