From f8a9187bb99cb54f633d90348e97e6fb30272c76 Mon Sep 17 00:00:00 2001 From: Yuki Hattori Date: Sun, 15 Sep 2024 23:16:34 +0900 Subject: [PATCH] Fix ESLint error --- src/utils/puppeteer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/puppeteer.ts b/src/utils/puppeteer.ts index 0d7c499b..dcfcc433 100644 --- a/src/utils/puppeteer.ts +++ b/src/utils/puppeteer.ts @@ -1,6 +1,7 @@ import fs from 'fs' import os from 'os' import path from 'path' +import { nanoid } from 'nanoid' import { launch } from 'puppeteer-core' import macDockIcon from '../assets/mac-dock-icon.png' import { warn } from '../cli' @@ -9,7 +10,6 @@ import { findChromeInstallation } from './chrome-finder' import { isInsideContainer } from './container' import { findEdgeInstallation } from './edge-finder' import { isWSL, resolveWindowsEnv } from './wsl' -import { nanoid } from 'nanoid' let executablePath: string | undefined | false = false let wslTmp: string | undefined