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

husky

Package Overview
Dependencies
Maintainers
1
Versions
215
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

husky - npm Package Compare versions

Comparing version 0.15.0-rc.1 to 0.15.0-rc.2

.gitattributes

4

CHANGELOG.md
# CHANGELOG
## 0.15.0-rc.2
* Fix install error
## 0.15.0-rc.1

@@ -4,0 +8,0 @@

5

lib/installer/bin.js

@@ -11,5 +11,6 @@ "use strict";

// Find Git dir
var _c = execa.sync('git', ['rev-parse', '--git-dir']), status = _c.status, stdout = _c.stdout, stderr = _c.stderr;
var _c = execa.sync('git', ['rev-parse', '--git-dir']), code = _c.code, stdout = _c.stdout, stderr = _c.stderr;
var gitDir = path.resolve(stdout); // Needed to normalize path on Windows
if (status !== 0) {
if (code !== 0) {
console.log('husky > failed to install');
console.log(stderr);

@@ -16,0 +17,0 @@ process.exit(1);

{
"name": "husky",
"version": "0.15.0-rc.1",
"version": "0.15.0-rc.2",
"description": "Prevents bad commit or push (git hooks, pre-commit/precommit, pre-push/prepush, post-merge/postmerge and all that stuff...)",

@@ -56,2 +56,3 @@ "bin": {

"devDependencies": {
"@types/execa": "^0.8.1",
"@types/jest": "^22.0.1",

@@ -58,0 +59,0 @@ "@types/node": "^9.3.0",

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