Avoid duplicate imports

This commit is contained in:
Tim Schaub
2022-02-05 11:46:26 -07:00
parent cdd1537a41
commit f10ba5c1e3
18 changed files with 54 additions and 47 deletions

View File

@@ -4,7 +4,7 @@ import esMain from 'es-main';
import express from 'express';
import fs from 'fs';
import fse from 'fs-extra';
import path from 'path';
import path, {dirname} from 'path';
import pixelmatch from 'pixelmatch';
import png from 'pngjs';
import puppeteer from 'puppeteer';
@@ -13,7 +13,6 @@ import webpack from 'webpack';
import webpackMiddleware from 'webpack-dev-middleware';
import yargs from 'yargs';
import {LogLevel} from 'loglevelnext/dist/LogLevel.js';
import {dirname} from 'path';
import {fileURLToPath} from 'url';
import {globby} from 'globby';
import {hideBin} from 'yargs/helpers';