Socket
Socket
Sign inDemoInstall

cwebp-bin

Package Overview
Dependencies
Maintainers
4
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cwebp-bin - npm Package Compare versions

Comparing version 3.0.0 to 3.1.0

2

cli.js

@@ -7,3 +7,3 @@ #!/usr/bin/env node

spawn(binPath, process.argv.slice(2), { stdio: 'inherit' })
spawn(binPath, process.argv.slice(2), {stdio: 'inherit'})
.on('exit', process.exit);

@@ -10,5 +10,7 @@ 'use strict';

.src(url + 'osx/cwebp', 'darwin')
.src(url + 'linux/cwebp', 'linux')
.src(url + 'win/cwebp.exe', 'win32')
.src(url + 'linux/x86/cwebp', 'linux', 'x86')
.src(url + 'linux/x64/cwebp', 'linux', 'x64')
.src(url + 'win/x86/cwebp.exe', 'win32', 'x86')
.src(url + 'win/x64/cwebp.exe', 'win32', 'x64')
.dest(path.join(__dirname, '../vendor'))
.use(process.platform === 'win32' ? 'cwebp.exe' : 'cwebp');

@@ -19,3 +19,3 @@ 'use strict';

var builder = new BinBuild()
.src('http://downloads.webmproject.org/releases/webp/libwebp-0.4.3.tar.gz')
.src('http://downloads.webmproject.org/releases/webp/libwebp-0.5.0.tar.gz')
.cmd(cfg)

@@ -22,0 +22,0 @@ .cmd('make && make install');

{
"name": "cwebp-bin",
"version": "3.0.0",
"version": "3.1.0",
"description": "cwebp wrapper that makes it seamlessly available as a local dependency",

@@ -20,3 +20,3 @@ "license": "MIT",

"postinstall": "node lib/install.js",
"test": "mkdir -p test/tmp && node test/test.js && rm -rf test/tmp"
"test": "xo && mkdir -p test/tmp && node test/test.js && rm -rf test/tmp"
},

@@ -47,4 +47,6 @@ "files": [

"bin-check": "^1.0.0",
"compare-size": "^1.0.1"
"compare-size": "^1.0.1",
"path-exists": "^1.0.0",
"xo": "^0.12.1"
}
}
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