Skip to content

Commit

Permalink
misc(cli): destructure args in import (#12398)
Browse files Browse the repository at this point in the history
  • Loading branch information
evenstensberg authored and paulirish committed May 12, 2021
1 parent ccc1a33 commit 56ed9ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lighthouse-cli/bin.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ const path = require('path');

const commands = require('./commands/commands.js');
const printer = require('./printer.js');
const getFlags = require('./cli-flags.js').getFlags;
const runLighthouse = require('./run.js').runLighthouse;
const generateConfig = require('../lighthouse-core/index.js').generateConfig;
const {getFlags} = require('./cli-flags.js');
const {runLighthouse} = require('./run.js');
const {generateConfig} = require('../lighthouse-core/index.js');

const log = require('lighthouse-logger');
const pkg = require('../package.json');
const Sentry = require('../lighthouse-core/lib/sentry.js');

const updateNotifier = require('update-notifier');
const askPermission = require('./sentry-prompt.js').askPermission;
const {askPermission} = require('./sentry-prompt.js');

/**
* @return {boolean}
Expand Down

0 comments on commit 56ed9ac

Please sign in to comment.