diff --git a/lib/log.js b/lib/log.js index b3136d8e..b41c7f72 100644 --- a/lib/log.js +++ b/lib/log.js @@ -1,6 +1,8 @@ import { EOL } from 'os'; import chalk from 'chalk'; -import { isObject, last, filter, isString, lowerCase, upperFirst, isArray } from 'lodash'; +import _ from 'lodash'; + +const { isObject, last, filter, isString, lowerCase, upperFirst, isArray } = _; class Logger { constructor({ isCI = true, isVerbose = false, verbosityLevel = 0, isDryRun = false } = {}) {