New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

bump-tag

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bump-tag - npm Package Compare versions

Comparing version 0.0.3 to 0.0.8

13

cli.js

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

function puts(error, stdout, stderr) {
sys.puts(stdout)
sys.puts(stdout);
};

@@ -53,6 +53,9 @@

if(git){
exec('git tag ' + pkg.version, puts);
exec('git add package.json', puts);
exec('git commit -m "bump to "'+ pkg.version, puts);
exec('git push origin master', puts);
setTimeout(function(){
exec('git tag ' + pkg.version, puts);
exec('git add package.json', puts);
exec('git commit -m "bump to "'+ pkg.version, puts);
exec('git push --tags', puts);
exec('git push origin master', puts);
}, 100);
}

@@ -59,0 +62,0 @@ } catch(e) {

{
"name": "bump-tag",
"version": "0.0.3",
"version": "0.0.8",
"description": "Bump version and add tag",

@@ -5,0 +5,0 @@ "keywords": [

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