Socket
Socket
Sign inDemoInstall

@commitlint/load

Package Overview
Dependencies
Maintainers
4
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@commitlint/load - npm Package Compare versions

Comparing version 9.0.1 to 9.1.0

16

CHANGELOG.md

@@ -6,2 +6,18 @@ # Change Log

# [9.1.0](https://github.com/conventional-changelog/commitlint/compare/v9.0.1...v9.1.0) (2020-06-21)
### Bug Fixes
* update dependency chalk to v4 ([#1275](https://github.com/conventional-changelog/commitlint/issues/1275)) ([a5d8fa1](https://github.com/conventional-changelog/commitlint/commit/a5d8fa118e8221361f14f5fd2b21d7aaad008a27))
### Features
* add local plugins support ([#1692](https://github.com/conventional-changelog/commitlint/issues/1692)) ([7b29c48](https://github.com/conventional-changelog/commitlint/commit/7b29c48321b513e091849fbb2cc2bf0e6ebb94a6))
## [9.0.1](https://github.com/conventional-changelog/commitlint/compare/v9.0.0...v9.0.1) (2020-05-26)

@@ -8,0 +24,0 @@

9

lib/load.js

@@ -59,4 +59,9 @@ "use strict";

if (Array.isArray(config.plugins)) {
config.plugins.forEach((pluginKey) => {
load_plugin_1.default(preset.plugins, pluginKey, process.env.DEBUG === 'true');
config.plugins.forEach(plugin => {
if (typeof plugin === 'string') {
load_plugin_1.default(preset.plugins, plugin, process.env.DEBUG === 'true');
}
else {
preset.plugins.local = plugin;
}
});

@@ -63,0 +68,0 @@ }

{
"name": "@commitlint/load",
"version": "9.0.1",
"version": "9.1.0",
"description": "Load shared commitlint configuration",

@@ -37,4 +37,4 @@ "main": "lib/load.js",

"devDependencies": {
"@commitlint/test": "^9.0.1",
"@commitlint/utils": "^9.0.1",
"@commitlint/test": "^9.1.0",
"@commitlint/utils": "^9.1.0",
"@types/lodash": "4.14.149",

@@ -44,6 +44,6 @@ "execa": "^3.4.0"

"dependencies": {
"@commitlint/execute-rule": "^9.0.1",
"@commitlint/resolve-extends": "^9.0.1",
"@commitlint/types": "^9.0.1",
"chalk": "3.0.0",
"@commitlint/execute-rule": "^9.1.0",
"@commitlint/resolve-extends": "^9.1.0",
"@commitlint/types": "^9.1.0",
"chalk": "4.1.0",
"cosmiconfig": "^6.0.0",

@@ -53,3 +53,3 @@ "lodash": "^4.17.15",

},
"gitHead": "7ff3f2902bcaa8b93b653a0af25c811d12ae0dc1"
"gitHead": "c9f5c5cb3f995362c760308f114b6319c0e55ce3"
}

Sorry, the diff of this file is not supported yet

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