Socket
Socket
Sign inDemoInstall

release-it

Package Overview
Dependencies
Maintainers
1
Versions
400
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

release-it - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

.idea/.name

5

lib/enquiry.js

@@ -9,4 +9,3 @@ var util = require('util'),

var enquiry = when.defer(),
noop = when.resolve(true),
repo = options[subject + 'Repo'];
noop = when.resolve(true);

@@ -35,3 +34,3 @@ // TODO: Fix abusing the "when" feature of Inquiry.js prompts (https://github.com/SBoudrias/Inquirer.js/issues/89)

name: 'push',
message: 'Push to ' + repo + '?',
message: 'Push?',
default: true,

@@ -38,0 +37,0 @@ when: tag

9

lib/git.js

@@ -73,7 +73,7 @@ var util = require('util'),

function push(destination) {
return run('git', 'push', destination);
function push() {
return run('git', 'push');
}
function pushTags(destination) {
function pushTags() {
return run(

@@ -83,4 +83,3 @@ 'git',

'--tags',
config.isForce() ? '--force' : '',
destination
config.isForce() ? '--force' : ''
);

@@ -87,0 +86,0 @@ }

{
"name": "release-it",
"version": "0.0.2",
"version": "0.0.3",
"description": "Interactive release tool for Git repositories. Supports to build and release to a distribution/component repository. Publish to npm.",

@@ -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