Skip to content

Commit 94437e8

Browse files
committed
fix(cli): remove destructuring for node 4 support
1 parent 030298e commit 94437e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

@commitlint/cli/cli.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ require('babel-polyfill'); // eslint-disable-line import/no-unassigned-import
55
const core = require('@commitlint/core');
66
const chalk = require('chalk');
77
const meow = require('meow');
8-
const {pick} = require('lodash');
8+
const pick = require('lodash').pick;
99
const stdin = require('get-stdin');
1010

1111
const pkg = require('./package');

0 commit comments

Comments
 (0)