Skip to content

Commit

Permalink
Fix lodash import
Browse files Browse the repository at this point in the history
  • Loading branch information
webpro committed Jul 21, 2021
1 parent f28ec24 commit 7ab8574
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion 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 } = {}) {
Expand Down

0 comments on commit 7ab8574

Please sign in to comment.