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

grizzly

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grizzly - npm Package Compare versions

Comparing version 1.0.13 to 1.0.14

10

lib/release.js
(function() {
'use strict';
var exec = require('execon'),
var path = require('path'),
exec = require('execon'),
GitHubApi = require('github'),

@@ -9,8 +10,5 @@ readjson = require('readjson'),

HOME = require('os-homedir')(),
ERROR_TOKEN = 'File ~/.grizzly.json with token not found!',
HOME_WIN = process.env.HOMEPATH,
HOME_UNIX = process.env.HOME,
HOME = (HOME_UNIX || HOME_WIN) + '/',
github = new GitHubApi({

@@ -21,3 +19,3 @@ version: '3.0.0'

module.exports = function(token, options, callback) {
var name = HOME + '.grizzly.json';
var name = path.join(HOME, '.grizzly.json');

@@ -24,0 +22,0 @@ exec.if(token, function() {

3

package.json
{
"name": "grizzly",
"version": "1.0.13",
"version": "1.0.14",
"description": "create release on github",

@@ -31,4 +31,5 @@ "main": "lib/release.js",

"minimist": "~1.1.0",
"os-homedir": "~1.0.0",
"readjson": "~1.1.0"
}
}

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