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

fis-command-release

Package Overview
Dependencies
Maintainers
3
Versions
108
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fis-command-release - npm Package Compare versions

Comparing version 0.12.1 to 0.12.2

2

package.json
{
"name": "fis-command-release",
"description": "fis release command.",
"version": "0.12.1",
"version": "0.12.2",
"author": "FIS Team <fis@baidu.com>",

@@ -6,0 +6,0 @@ "homepage": "http://fis.baidu.com/",

@@ -42,7 +42,11 @@ /*

} else if (type == 'unlinkDir') {
opt.srcCache.forEach(function (realpath) {
if ((p = realpath.indexOf(path)) > -1) {
opt.srcCache.splice(p, 1);
}
var toDelete = [];
opt.srcCache.forEach(function(realpath, index) {
realpath.indexOf(path) === 0 && toDelete.unshift(index);
});
toDelete.forEach(function(index) {
opt.srcCache.splice(index, 1);
});
}

@@ -351,2 +355,2 @@ clearTimeout(timer);

});
};
};
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