New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

bestzip

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bestzip - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1-test1

myDir/foo.txt

2

bin/cli.js

@@ -21,2 +21,2 @@ #!/usr/bin/env node

console.log('zipped!');
});
});

@@ -59,2 +59,5 @@ // creates a zip file using either the native `zip` command if avaliable,

fs.stat(source, function(err, stats) {
if (err) {
return next(err);
}
if (stats.isDirectory()) {

@@ -61,0 +64,0 @@ archive.bulk([

{
"name": "bestzip",
"version": "1.1.0",
"version": "1.1.1-test1",
"description": "Uses OS zip command if avaliable (for better performance and speed) or node.js version if there is no system command avaliable. Can be called via node or command line.",

@@ -5,0 +5,0 @@ "main": "lib/bestzip.js",

@@ -13,3 +13,3 @@ # bestzip

npm install -g bestzip
bestzip source/ [other sources...] destination.zip
bestzip destination.zip source/ [other sources...]

@@ -27,3 +27,3 @@ ## Command line usage within `package.json` scripts

"build" "...",
"zip": "bestzip out/* bundle.zip",
"zip": "bestzip bundle.zip source/*",
"upload": "....",

@@ -30,0 +30,0 @@ "deploy": "npm run build && npm run zip && npm run upload"

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