Skip to content

Commit

Permalink
Conform code style
Browse files Browse the repository at this point in the history
  • Loading branch information
TheUltDev authored Jan 2, 2024
1 parent 8585565 commit 3cd359f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { importFresh } from '../import-fresh.js'
import { esbuildCssModulesPlugin } from './esbuild-css-modules-plugin.js'
import { esbuildPreactCompatPlugin } from './esbuild-preact-compat-plugin.js'

const isWindows = platform() === 'win32';
const isWindows = platform() === 'win32'

interface EntryFile extends ConfigFile {
commandId: string
Expand Down Expand Up @@ -57,7 +57,7 @@ async function overrideEsbuildConfigAsync(
return buildOptions
}
if (isWindows) {
filePaths = filePaths.map(p => pathToFileURL(p).href);
filePaths = filePaths.map(p => pathToFileURL(p).href)
}
const overrideEsbuildConfig:
| OverrideEsbuildConfig
Expand Down

0 comments on commit 3cd359f

Please sign in to comment.