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

extension-tools

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

extension-tools - npm Package Compare versions

Comparing version 0.3.0 to 0.3.1

2

package.json
{
"name": "extension-tools",
"version": "0.3.0",
"version": "0.3.1",
"description": "A collection of tools for automated publishing of browser extensions",

@@ -5,0 +5,0 @@ "main": "exec.js",

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

function fatalError(err) {
console.error('Publishing to Chrome Web Store failed:', err.message, err.stack);
process.exit(1);
}
function main(args) {

@@ -190,17 +195,12 @@ var configPath;

console.error('Publishing updated package failed: %s', err);
throw err;
fatalError(err);
});
}
var onErr = function(err) {
console.error('Publishing to Chrome Web Store failed:', err.message, err.stack);
process.exit(1);
};
process.on('uncaughtException', onErr);
try {
process.on('uncaughtException', fatalError);
main(process.argv);
} catch (err) {
onErr(err);
fatalError(err);
}

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