Refactor import statement in patch-windows-binaries script
Some checks failed
farmcontrol/farmcontrol-ui/pipeline/head There was a failure building this commit

- Changed the import of `rcedit` from named import to default import for consistency and clarity in the `patch-windows-binaries.mjs` script.
This commit is contained in:
Tom Butcher 2026-08-03 01:07:05 +01:00
parent f641ea390d
commit 634113ec5c

View File

@ -1,7 +1,7 @@
import { existsSync, readdirSync } from 'node:fs'
import path from 'node:path'
import { fileURLToPath } from 'node:url'
import { rcedit } from 'rcedit'
import rcedit from 'rcedit'
const rootDir = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..')