extension-tools
Advanced tools
Comparing version 0.3.0 to 0.3.1
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
21331
1