mirror of
https://github.com/stablyai/orca.git
synced 2026-09-23 16:02:24 +00:00
Migrate fileURLToPath(import.meta.url) / dirname(...) boilerplate to the
native import.meta.dirname / import.meta.filename, then enable the rule
at error so new code stays on the native form.
The oxlint autofix rewrites the expression but leaves the now-unused
node:url / node:path imports behind (which the already-enabled
no-unused-vars=error would then flag), so this commit also removes those
34 orphaned imports — trimming the named import where other names are
still used, deleting the line where it was the sole import.
Scope is build scripts + Node-env tests only (config/scripts, tools/
benchmarks, *.test.{ts,mjs}, vitest configs); zero shipped runtime code.
The native properties are exact equivalents (Node >= 20.11; repo is on
24), so behavior is unchanged.
Verified: oxlint 0 errors tree-wide (root + mobile), oxfmt clean,
typecheck (node+cli+web) + mobile tsc pass, root vitest 22825 passed /
0 failed, mobile vitest 1018 passed. Exercised the rewritten scripts
directly: build:relay (6 targets), ensure-native-runtime,
verify-macos-entitlements all run correctly with import.meta.dirname.
18 lines
727 B
JavaScript
18 lines
727 B
JavaScript
import fs from 'node:fs'
|
|
import path from 'node:path'
|
|
|
|
// Korean key-specific overrides (reviewed in full UI context: product names, git terms, and
|
|
// labels MT mistranslated). Stored as a JSON data file — too many entries to inline under the
|
|
// .mjs max-lines limit — and loaded here so the catalog scripts keep a single ko key-override source.
|
|
const jsonPath = path.join(import.meta.dirname, 'locale-ko-key-overrides.json')
|
|
|
|
let parsed
|
|
try {
|
|
parsed = JSON.parse(fs.readFileSync(jsonPath, 'utf8'))
|
|
} catch (error) {
|
|
// Name the file: a bare JSON.parse SyntaxError doesn't say which file failed.
|
|
throw new Error(`Failed to load ${path.basename(jsonPath)}: ${error.message}`)
|
|
}
|
|
|
|
export const KO_KEY_OVERRIDES = parsed
|