Skip to content

Commit

Permalink
fix(cli): remove destructuring for node 4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
marionebl committed Jul 11, 2017
1 parent 02e4f43 commit fe8caff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion @commitlint/cli/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require('babel-polyfill'); // eslint-disable-line import/no-unassigned-import
const core = require('@commitlint/core');
const chalk = require('chalk');
const meow = require('meow');
const {pick} = require('lodash');
const pick = require('lodash').pick;
const stdin = require('get-stdin');

const pkg = require('./package');
Expand Down

0 comments on commit fe8caff

Please sign in to comment.