Socket
Socket
Sign inDemoInstall

crx

Package Overview
Dependencies
Maintainers
3
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

crx - npm Package Compare versions

Comparing version 3.0.1 to 3.0.2

.idea/misc.xml

3

package.json

@@ -5,3 +5,3 @@ {

"description": "Build Google Chrome extensions with node.js",
"version": "3.0.1",
"version": "3.0.2",
"homepage": "https://github.com/oncletom/crx",

@@ -18,2 +18,3 @@ "bin": {

"node": ">=0.7.12",
"iojs": ">=1.0.0 <2.0.0",
"npm": ">=1.4.6"

@@ -20,0 +21,0 @@ },

@@ -89,3 +89,3 @@ # crx [![Build Status](https://secure.travis-ci.org/oncletom/crx.svg)](http://travis-ci.org/oncletom/crx)

.then(function() {
return crx.pack(function(crxBuffer){
return crx.pack().then(function(crxBuffer){
var updateXML = crx.generateUpdateXML()

@@ -92,0 +92,0 @@

@@ -220,3 +220,7 @@ /* global require, process, Buffer, module */

archive.on('readable', function () {
contents = Buffer.concat([contents, archive.read()]);
var buf = archive.read();
if (buf) {
contents = Buffer.concat([contents, buf]);
}
});

@@ -223,0 +227,0 @@

Sorry, the diff of this file is not supported yet

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