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.4.2 to 0.4.3

2

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

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

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

function setVersionKey(manifestPath, newVersion) {
var manifest = JSON.parse(fs.readFileSync(manifestPath));
var manifest = JSON.parse(fs.readFileSync(manifestPath).toString());
manifest.version = newVersion;

@@ -53,2 +53,3 @@ fs.writeFileSync(manifestPath, JSON.stringify(manifest, null /* replacer */, 2) + '\n')

var buildVersion = gitVersion.buildVersionFromGitVersion(version);
console.log('Setting version to "%s"', buildVersion);
setVersionKey(manifestPath, buildVersion);

@@ -55,0 +56,0 @@ }).done();

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