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

gluejs

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gluejs - npm Package Compare versions

Comparing version 2.1.3 to 2.1.4

6

lib/list-tasks/filter-packages.js

@@ -186,3 +186,7 @@ var fs = require('fs'),

if(!result) {
removed.push((packageObj.basepath ? packageObj.basepath : '') + name);
if(name.charAt(0) == '/' ) {
removed.push(name);
} else {
removed.push((packageObj.basepath ? packageObj.basepath : '') + name);
}
}

@@ -189,0 +193,0 @@ return result;

@@ -41,3 +41,4 @@ var fs = require('fs'),

cacheHits = [],
optsHash = Cache.hash(JSON.stringify(options));
optsHash = Cache.hash(JSON.stringify(options)),
progress;

@@ -269,2 +270,7 @@ // console.log(util.inspect(list.files.map(function(item) { return item.name; }), false, 20, true));

// tj's progress can make the process hang (!) if the total count is off due to exclusions
if(progress && progress.rl && progress.rl.close) {
progress.rl.close();
}
// if any reporting is explicitly enabled

@@ -271,0 +277,0 @@ if(options.report || options.verbose || options.progress) {

2

package.json
{
"name": "gluejs",
"description": "Build CommonJS modules for the browser via a chainable API",
"version": "2.1.3",
"version": "2.1.4",
"author": {

@@ -6,0 +6,0 @@ "name": "Mikito Takada",

Sorry, the diff of this file is not supported yet

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