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

commitplease

Package Overview
Dependencies
Maintainers
1
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

commitplease - npm Package Compare versions

Comparing version 1.5.1 to 1.6.0

2

package.json
{
"name": "commitplease",
"version": "1.5.1",
"version": "1.6.0",
"description": "Validates strings as commit messages",

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

@@ -32,3 +32,10 @@ (function avoidSelfInstall() {

createLink: function() {
fs.symlinkSync( symlink, hook );
try {
fs.symlinkSync( symlink, hook );
} catch(e) {
if (/EPERM/.test(e.message)) {
console.error("Failed to create symlink. If you're running this on Windows, make sure you execute this as admin");
}
throw e;
}
},

@@ -35,0 +42,0 @@ destroyLink: function() {

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