@the-i18n-kit/cli 7.0.0 → 8.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin.js +1 -1
- package/dist/{cli-waEjbUM1.js → cli-BTMcWXGs.js} +3 -3
- package/dist/{cli-waEjbUM1.js.map → cli-BTMcWXGs.js.map} +1 -1
- package/dist/{define-config-e0B0VHq7.d.ts → define-config-BpdVaEVR.d.ts} +1 -1
- package/dist/{define-config-ChY3jk6K.d.ts → define-config-ZRZw5PWy.d.ts} +15 -3
- package/dist/define-config-ZRZw5PWy.d.ts.map +1 -0
- package/dist/define-config.d.ts +1 -1
- package/dist/{descriptors-10sgyqEs.js → descriptors-Bo5UM031.js} +23 -6
- package/dist/{descriptors-10sgyqEs.js.map → descriptors-Bo5UM031.js.map} +1 -1
- package/dist/{detector-DtFY4qm3.js → detector-B4z_RZde.js} +2 -2
- package/dist/{detector-DtFY4qm3.js.map → detector-B4z_RZde.js.map} +1 -1
- package/dist/{detector-BJTkyhQ0.js → detector-DTfFbwSU.js} +2 -2
- package/dist/{index-CdjJ71Ag.d.ts → index-CWFWYHf5.d.ts} +76 -50
- package/dist/index-CWFWYHf5.d.ts.map +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +5 -5
- package/dist/operations-CKHEmLNJ.js +8 -0
- package/dist/{operations-CNqEBD__.js → operations-Daf2Ommm.js} +183 -46
- package/dist/operations-Daf2Ommm.js.map +1 -0
- package/dist/{project-config-C3ao4Uii.js → project-config-eLR0J377.js} +6 -2
- package/dist/project-config-eLR0J377.js.map +1 -0
- package/package.json +1 -1
- package/dist/define-config-ChY3jk6K.d.ts.map +0 -1
- package/dist/index-CdjJ71Ag.d.ts.map +0 -1
- package/dist/operations-CNqEBD__.js.map +0 -1
- package/dist/operations-D7IMu_xY.js +0 -8
- package/dist/project-config-C3ao4Uii.js.map +0 -1
|
@@ -52,7 +52,11 @@ const projectConfigSchema = z.object({
|
|
|
52
52
|
key: z.string().describe("The dot-path translation key this example demonstrates (e.g., 'common.actions.save')."),
|
|
53
53
|
note: z.string().describe("Optional style comment shown alongside the example.").optional()
|
|
54
54
|
}).catchall(z.string()).describe("A single translation example. 'key' holds the dot-path translation key (e.g., 'common.actions.save'), 'note' an optional style comment, and every other property is a locale code (e.g., 'de-DE', 'en-US') mapped to its translated value.")).describe("Few-shot translation examples that demonstrate the project's style. The agent uses these as reference when generating translations.").optional(),
|
|
55
|
-
|
|
55
|
+
declaredNamespaces: z.array(z.object({
|
|
56
|
+
pattern: nonEmptyString.describe("Key pattern the declaration covers (e.g., \"views.defaults.**\"). Use * to match a single key segment, ** to match any depth."),
|
|
57
|
+
reason: nonEmptyString.describe("What keeps these keys alive, named so the report can say why they are protected (e.g., \"sent by bookings-api as name_key\").")
|
|
58
|
+
})).describe("Namespaces whose keys exist by contract rather than by a call site — sent by a backend, keyed by runtime data, built from a registry. Their keys are never reported as orphans and never written by check --write, in every layer. Each declaration is reported with the keys it matches, so one that matches nothing is visible as stale.").optional(),
|
|
59
|
+
orphanScan: z.record(z.string(), z.object({ ignorePatterns: z.array(z.string()).describe("Glob patterns for translation keys to exclude from orphan detection in this layer (e.g., \"common.datetime.months.*\"). Use * to match a single key segment, ** to match any depth. For keys that exist by contract elsewhere, declare them under declaredNamespaces instead, which records why and reports what each pattern protects.").optional() }).passthrough()).describe("Per-layer configuration for orphan key detection. Map each layer name to its settings. Scan directories are automatically determined from each layer's root directory.").optional(),
|
|
56
60
|
localeDirs: z.array(localeDirEntrySchema).describe("Locale directories for the generic adapter. Each entry is a path string (layer defaults to 'default') or an object with 'path' and 'layer' properties.").optional(),
|
|
57
61
|
defaultLocale: nonEmptyString.describe("Default locale code. Required for generic adapter activation.").optional(),
|
|
58
62
|
apps: z.array(appEntrySchema).describe("Which app consumes which layers — the consumer graph behind app-scoped orphan detection, misplaced-usage reports and unconsumed-layer warnings. Declaring it overrides both framework discovery and workspace inference.").optional(),
|
|
@@ -315,4 +319,4 @@ async function loadJsonConfig(projectDir) {
|
|
|
315
319
|
//#endregion
|
|
316
320
|
export { log as i, loadProjectConfig as n, validateProjectConfig as r, CONFIG_FILENAME as t };
|
|
317
321
|
|
|
318
|
-
//# sourceMappingURL=project-config-
|
|
322
|
+
//# sourceMappingURL=project-config-eLR0J377.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"project-config-eLR0J377.js","names":[],"sources":["../src/utils/logger.ts","../src/config/schema.ts","../src/config/typed-config.ts","../src/config/project-config.ts"],"sourcesContent":["import { createConsola } from 'consola'\n\n// All diagnostics go to stderr — stdout is reserved for command results so\n// that `the-i18n-cli … | jq` and CI `$(…)` captures always receive pure JSON.\nexport const log = createConsola({\n stdout: process.stderr,\n stderr: process.stderr,\n}).withTag('the-i18n-cli')\n","/**\n * The one definition of the declared half of the kit's configuration —\n * everything a human tells the tool, as opposed to what it can see for itself.\n *\n * `.i18n-mcp.json`, `i18n-kit.config.ts` and the `i18nKit` block in\n * `nuxt.config.ts` all accept this same shape, and all validate against this\n * same schema. The `ProjectConfig` interface in `./types.ts` documents it;\n * the guard at the bottom of this file fails the build if the two drift.\n *\n * The `.describe()` text on each field is the published documentation of that\n * field: `./schema-json.ts` converts this schema into `packages/mcp/schema.json`,\n * which editors read for validation and tooltips. Write it for a user looking\n * at their own config file, not for a reader of this module.\n */\nimport { z } from 'zod'\nimport type { ProjectConfig } from './types.js'\nimport { log } from '../utils/logger.js'\n\nconst nonEmptyString = z.string().min(1).refine(s => s.trim().length > 0, 'Must not be empty or whitespace-only')\n\nconst layerRuleSchema = z.object({\n layer: z.string()\n .describe('Layer name (e.g., \\'root\\', \\'app-admin\\', \\'app-shop\\', \\'lang\\').'),\n description: z.string()\n .describe('What this layer contains — key namespaces, domain scope, etc.'),\n when: z.string()\n .describe('Natural-language rule describing when a key should go in this layer.'),\n})\n\nconst localeDirEntrySchema = z.union([\n nonEmptyString\n .describe('Relative path to a locale directory. Layer name defaults to \\'default\\'.'),\n z.object({\n path: nonEmptyString.describe('Relative path to a locale directory.'),\n layer: nonEmptyString.describe('Layer name for this locale directory.'),\n }),\n])\n\nconst appEntrySchema = z.object({\n name: nonEmptyString\n .describe('App name, as it appears in orphan and status reports (e.g., \\'shop\\', \\'@acme/admin\\').'),\n layers: z.array(nonEmptyString)\n .describe('Layer names this app can render — its own layer plus every shared layer it consumes.'),\n})\n\nexport const projectConfigSchema = z.object({\n $schema: z.string()\n .describe('Path or URL to the JSON schema for IDE autocompletion.')\n .optional(),\n framework: z.string()\n .describe(\n 'Force framework detection instead of auto-detecting from project structure. '\n + 'Any registered adapter name is accepted — the suggestions are the adapters '\n + 'that ship today, not the only permitted values. \\'vue\\' is accepted as an '\n + 'alias for \\'generic\\', which resolves Vue projects: declare localeDirs when '\n + 'the locale files are not in a conventional directory.',\n )\n .optional(),\n context: z.string()\n .describe(\n 'Free-form project background for the agent — business domain, user base, brand '\n + 'voice, anything that helps the agent understand the project.',\n )\n .optional(),\n layerRules: z.array(layerRuleSchema)\n .describe(\n 'Rules that help the agent decide which layer a new translation key belongs to. '\n + 'The agent interprets the natural-language \\'when\\' field.',\n )\n .optional(),\n glossary: z.record(z.string(), z.string())\n .describe(\n 'Term dictionary for consistent translations. Keys are source terms, values '\n + 'describe the required translation or usage note.',\n )\n .optional(),\n translationPrompt: z.string()\n .describe(\n 'System prompt prepended to all translation requests (provider mode and agent-mode '\n + 'fallback contexts). Sets tone, style, and constraints.',\n )\n .optional(),\n localeNotes: z.record(z.string(), z.string())\n .describe(\n 'Per-locale context included in translation prompts. Keys are locale codes (e.g., '\n + '\\'de-DE\\', \\'en-US\\', \\'de-DE-formal\\'), values describe register, regional '\n + 'conventions, or other locale-specific guidance.',\n )\n .optional(),\n examples: z.array(\n // `key` is required because the prompt builder renders `- ${ex.key}: …`\n // unconditionally: an entry without one reached the provider as the literal\n // string \"undefined\", offered as a translation key to imitate (#367).\n z.object({\n key: z.string().describe('The dot-path translation key this example demonstrates (e.g., \\'common.actions.save\\').'),\n note: z.string().describe('Optional style comment shown alongside the example.').optional(),\n })\n .catchall(z.string())\n .describe(\n 'A single translation example. \\'key\\' holds the dot-path translation key (e.g., '\n + '\\'common.actions.save\\'), \\'note\\' an optional style comment, and every other '\n + 'property is a locale code (e.g., \\'de-DE\\', \\'en-US\\') mapped to its translated value.',\n ),\n )\n .describe(\n 'Few-shot translation examples that demonstrate the project\\'s style. The agent uses '\n + 'these as reference when generating translations.',\n )\n .optional(),\n declaredNamespaces: z.array(z.object({\n pattern: nonEmptyString\n .describe(\n 'Key pattern the declaration covers (e.g., \"views.defaults.**\"). Use * to match a '\n + 'single key segment, ** to match any depth.',\n ),\n reason: nonEmptyString\n .describe(\n 'What keeps these keys alive, named so the report can say why they are protected '\n + '(e.g., \"sent by bookings-api as name_key\").',\n ),\n }))\n .describe(\n 'Namespaces whose keys exist by contract rather than by a call site — sent by a backend, '\n + 'keyed by runtime data, built from a registry. Their keys are never reported as orphans '\n + 'and never written by check --write, in every layer. Each declaration is reported with '\n + 'the keys it matches, so one that matches nothing is visible as stale.',\n )\n .optional(),\n orphanScan: z.record(z.string(), z.object({\n ignorePatterns: z.array(z.string())\n .describe(\n 'Glob patterns for translation keys to exclude from orphan detection in this layer '\n + '(e.g., \"common.datetime.months.*\"). Use * to match a single key segment, ** to match '\n + 'any depth. For keys that exist by contract elsewhere, declare them under '\n + 'declaredNamespaces instead, which records why and reports what each pattern protects.',\n )\n .optional(),\n // passthrough for backwards-compat with deprecated keys like includeParentLayer\n }).passthrough())\n .describe(\n 'Per-layer configuration for orphan key detection. Map each layer name to its settings. '\n + 'Scan directories are automatically determined from each layer\\'s root directory.',\n )\n .optional(),\n localeDirs: z.array(localeDirEntrySchema)\n .describe(\n 'Locale directories for the generic adapter. Each entry is a path string (layer defaults '\n + 'to \\'default\\') or an object with \\'path\\' and \\'layer\\' properties.',\n )\n .optional(),\n defaultLocale: nonEmptyString\n .describe('Default locale code. Required for generic adapter activation.')\n .optional(),\n apps: z.array(appEntrySchema)\n .describe(\n 'Which app consumes which layers — the consumer graph behind app-scoped orphan detection, '\n + 'misplaced-usage reports and unconsumed-layer warnings. Declaring it overrides both framework '\n + 'discovery and workspace inference.',\n )\n .optional(),\n consumerGraph: z.enum(['auto', 'off'])\n .describe(\n 'Whether to infer the consumer graph from the package manager workspace and package.json '\n + 'dependencies when the framework provides no app information: \\'auto\\' (default) infers it, '\n + '\\'off\\' keeps every layer in one app.',\n )\n .optional(),\n locales: z.array(nonEmptyString)\n .describe(\n 'Explicit list of locale codes to operate on. If absent, locales are auto-discovered '\n + 'from files on disk.',\n )\n .optional(),\n protectedLocales: z.array(nonEmptyString)\n .describe(\n 'Human-maintained locales excluded from automatic translation. Entries may be any locale '\n + 'ref (code, language tag, or file name); entries that do not match a known locale are '\n + 'ignored with a warning. Explicitly naming a protected locale in targetLocales overrides '\n + 'the protection (with a warning).',\n )\n .optional(),\n reportOutput: z.union([\n z.literal(true)\n .describe('Set to true to write reports to the default \\'.i18n-reports/\\' directory.'),\n nonEmptyString\n .describe('Custom directory path (relative to project root) where diagnostic tool reports are written.'),\n ])\n .describe(\n 'Enable file output for diagnostic tools (get_missing_translations, search_translations, '\n + 'find_orphan_keys, find_undefined_keys). When set, each tool writes its full JSON report to '\n + '<reportOutput>/<toolName>.json and returns only a summary in the MCP response. Set to true '\n + 'for the default \\'.i18n-reports/\\' directory, or a string for a custom path.',\n )\n .optional(),\n localeFileFormat: z.enum(['json', 'php-array', 'yaml'])\n .describe(\n 'Override the auto-detected locale file format. \\'yaml\\' covers both .yaml and .yml files. '\n + 'Useful when several formats exist in one project or auto-detection picks wrong.',\n )\n .optional(),\n translationMemory: z.boolean()\n .describe(\n 'Write a translation memory to \\'.i18n-kit.lock.json\\' at the project root, recording per '\n + 'layer, key and target locale a hash of the source text each translation was made from, so '\n + 'later runs can tell targets that are still current from ones whose source has changed since. '\n + 'Off by default; no file is created until you enable it.',\n )\n .optional(),\n providerBaseUrl: nonEmptyString\n .describe(\n 'Base URL for the LLM provider — gateways, self-hosted model servers and corporate proxies '\n + 'that speak the provider\\'s own protocol. Overrides the endpoint only, not the request shape '\n + 'or auth header. Overridden by the I18N_BASE_URL environment variable and by --baseUrl.',\n )\n .optional(),\n // Deprecated with the removal of MCP sampling: accepted so existing config\n // files keep validating (the schema is strict), warned about, and ignored.\n samplingPreferences: z.unknown()\n .meta({\n deprecated: true,\n description:\n 'Deprecated and ignored — MCP sampling was removed. Still accepted so existing config '\n + 'files keep validating. Configure a provider instead (e.g., I18N_PROVIDER/I18N_MODEL).',\n })\n .optional(),\n}).strict()\n\n/**\n * Validate a candidate project config against the published schema, returning\n * the formatted issue list rather than throwing. `init` uses this to refuse to\n * emit a config the tool would then reject; the loaders turn the same failure\n * into a ConfigError naming the file it came from.\n */\nexport function validateProjectConfig(\n value: unknown,\n): { ok: true, data: ProjectConfig } | { ok: false, error: string } {\n const result = projectConfigSchema.safeParse(value)\n if (result.success) return { ok: true, data: result.data as ProjectConfig }\n\n const error = result.error.issues\n .map((issue) => {\n const path = issue.path.length > 0 ? issue.path.join('.') : '(root)'\n return ` ${path}: ${issue.message}`\n })\n .join('\\n')\n return { ok: false, error }\n}\n\n/**\n * Strip the deprecated keys the schema still accepts, warning once, so that a\n * config keeps validating without the value going on to mean anything. Applied\n * by every loader — a key ignored in `.i18n-mcp.json` but silently honoured in\n * `i18n-kit.config.ts` would be exactly the divergence this file exists to\n * prevent.\n */\nexport function dropDeprecatedKeys(config: ProjectConfig, source: string): ProjectConfig {\n const data = config as ProjectConfig & { samplingPreferences?: unknown }\n if ('samplingPreferences' in data) {\n log.warn(\n `${source}: \"samplingPreferences\" is deprecated and ignored — `\n + 'MCP sampling was removed. Configure a provider (e.g. I18N_PROVIDER/I18N_MODEL) instead.',\n )\n delete data.samplingPreferences\n }\n return data\n}\n\n// ─── Drift guard ────────────────────────────────────────────────\n//\n// A key added to the interface but not the schema is rejected at runtime as an\n// unknown key (the schema is strict) — a typed config that the editor accepts\n// and the CLI refuses. A key added to the schema but not the interface is\n// accepted at runtime and invisible in an editor. Both are the drift this\n// module exists to prevent, so both are a type error here.\n//\n// `$schema` is JSON-only, and `samplingPreferences` is accepted purely so old\n// files keep validating; neither belongs in the documented type.\n\ntype SchemaKey = Exclude<keyof z.infer<typeof projectConfigSchema>, '$schema' | 'samplingPreferences'>\n\n/** Fails to compile unless `T` is `never`, naming the offending key when not. */\ntype NoDrift<T extends never> = T\n\ntype _SchemaCoversType = NoDrift<Exclude<keyof ProjectConfig, SchemaKey>>\ntype _TypeCoversSchema = NoDrift<Exclude<SchemaKey, keyof ProjectConfig>>\n","/**\n * Loading `i18n-kit.config.ts` — the same configuration `.i18n-mcp.json`\n * carries, written in TypeScript so the editor checks it.\n *\n * Read with no build step, which is the whole point: a `protectedLocales` entry\n * that only takes effect once something has been built is a locale that quietly\n * goes unprotected in a fresh checkout. Everything here runs off the source\n * file as it sits on disk.\n */\nimport { existsSync } from 'node:fs'\nimport { dirname, join, resolve } from 'node:path'\nimport { fileURLToPath } from 'node:url'\nimport type { ProjectConfig } from './types.js'\nimport { dropDeprecatedKeys, validateProjectConfig } from './schema.js'\nimport { ConfigError, toErrorMessage } from '../utils/errors.js'\nimport { log } from '../utils/logger.js'\n\n/**\n * Candidate names, in the order a directory is searched. `.ts` first because\n * it is the one worth having; the rest exist so a JavaScript project is not\n * told to adopt TypeScript to get a typed config.\n */\nconst TYPED_CONFIG_FILENAMES = [\n 'i18n-kit.config.ts',\n 'i18n-kit.config.mts',\n 'i18n-kit.config.js',\n 'i18n-kit.config.mjs',\n 'i18n-kit.config.cjs',\n 'i18n-kit.config.cts',\n] as const\n\n/**\n * Walk up from `startDir` for the nearest `i18n-kit.config.*`, the same way\n * `findConfigFile` looks for `.i18n-mcp.json`. Both stop at the first\n * directory that has one, so a config in an app directory shadows one in the\n * repository root rather than merging with it.\n */\nexport function findTypedConfigFile(startDir: string): string | null {\n // Absolute from the outset: a relative `--projectDir` would otherwise yield\n // a relative config path, and jiti reads a relative path as a bare module\n // specifier — resolved against node_modules, where it is never found.\n let dir = resolve(startDir)\n while (true) {\n const found = TYPED_CONFIG_FILENAMES\n .map(name => join(dir, name))\n .filter(path => existsSync(path))\n\n if (found[0]) {\n if (found.length > 1) {\n log.warn(\n `Several i18n-kit configs in ${dir} (${found.map(p => p.slice(dir.length + 1)).join(', ')}). `\n + `Using ${found[0].slice(dir.length + 1)} — delete the others, they are being ignored.`,\n )\n }\n return found[0]\n }\n\n const parent = dirname(dir)\n if (parent === dir) break // filesystem root\n dir = parent\n }\n return null\n}\n\n/**\n * Load and validate the nearest typed config, or null when there isn't one.\n *\n * Throws, unlike the framework-config readers this issue also adds. Those read\n * a file someone wrote for another tool, so failing to read it means falling\n * back to a guess. This file exists only for the kit: if it throws, or declares\n * a key that does not exist, carrying on without it is precisely the silent\n * non-application the typed config was added to prevent.\n */\nexport async function loadTypedConfig(\n projectDir: string,\n): Promise<{ path: string, config: ProjectConfig } | null> {\n const path = findTypedConfigFile(projectDir)\n if (!path) {\n log.debug(`No i18n-kit.config.* found in ${projectDir} or any parent directory — skipping`)\n return null\n }\n\n log.info(`Found typed project config: ${path}`)\n\n let module: unknown\n try {\n const { createJiti } = await import('jiti')\n // interopDefault stays off so that a file with only named exports is\n // distinguishable from one with a default: with the interop on, the whole\n // namespace comes back and the schema rejects it as a config full of\n // unknown keys, which explains nothing.\n const jiti = createJiti(import.meta.url, {\n interopDefault: false,\n alias: selfAlias(),\n })\n module = await jiti.import(path)\n }\n catch (error) {\n throw new ConfigError(\n `Failed to load ${path}: ${toErrorMessage(error)}`,\n )\n }\n\n if (module === null || typeof module !== 'object') {\n throw new ConfigError(\n `${path} must export its config as the default export — `\n + 'write `export default defineI18nKitConfig({ ... })`.',\n )\n }\n\n // In a `.cts` file `module.exports` comes back as the module itself, with no\n // `default` to unwrap — so for the CommonJS spellings, that object *is* the\n // config. Everywhere else a missing `default` means a file of named exports,\n // and saying so beats letting the schema report a config full of unknown keys.\n const commonJs = path.endsWith('.cts') || path.endsWith('.cjs')\n if (!('default' in module) && !commonJs) {\n throw new ConfigError(\n `${path} must export its config as the default export — `\n + 'write `export default defineI18nKitConfig({ ... })`.',\n )\n }\n\n const exported = 'default' in module ? (module as { default: unknown }).default : module\n\n if (exported === null || typeof exported !== 'object' || Array.isArray(exported)) {\n throw new ConfigError(\n `${path} must export a config object as its default export — got ${describe(exported)}. `\n + `Wrap it in defineI18nKitConfig() from \"${CONFIG_SPECIFIER}\".`,\n )\n }\n\n const result = validateProjectConfig(exported)\n if (!result.ok) {\n throw new ConfigError(`Invalid ${path}:\\n${result.error}`)\n }\n\n return { path, config: dropDeprecatedKeys(result.data, path) }\n}\n\n/**\n * The specifier the documentation tells you to import from. Configs written\n * before the rename may still name the old one; it keeps resolving, but only\n * the new one belongs in a message that tells someone what to write.\n */\nconst CONFIG_SPECIFIER = '@the-i18n-kit/cli/config'\nconst DEPRECATED_CONFIG_SPECIFIER = 'the-i18n-cli/config'\n\n/**\n * Point the `/config` specifiers at the copy of `defineI18nKitConfig` that is\n * already running.\n *\n * A config file imports it for the types, and types only need the package\n * installed at author time — but the CLI is often run through `npx` in a\n * project that never added it as a dependency, where a bare import would be\n * unresolvable and take the whole config down with it. Resolving it to\n * ourselves costs nothing and is the same function either way: identity.\n *\n * Both spellings are aliased: the rescue path is worth nothing if it covers a\n * name the docs no longer recommend, and the deprecated one keeps working so\n * existing configs do not break.\n *\n * Returns no alias when the entry cannot be located, which leaves normal\n * resolution to find the installed package.\n */\nfunction selfAlias(): Record<string, string> {\n // `./` when running from the bundle, where define-config.js sits beside the\n // chunk this code ends up in; `../` when running from source, as tests do.\n for (const candidate of ['./define-config.js', '../define-config.js', '../define-config.ts']) {\n const path = fileURLToPath(new URL(candidate, import.meta.url))\n if (existsSync(path)) {\n return { [CONFIG_SPECIFIER]: path, [DEPRECATED_CONFIG_SPECIFIER]: path }\n }\n }\n return {}\n}\n\nfunction describe(value: unknown): string {\n if (value === null) return 'null'\n if (Array.isArray(value)) return 'an array'\n if (typeof value === 'function') return 'a function (call defineI18nKitConfig, do not pass it)'\n return typeof value\n}\n","import { readFile } from 'node:fs/promises'\nimport { existsSync } from 'node:fs'\nimport { join, dirname } from 'node:path'\nimport type { ProjectConfig } from './types.js'\nimport { dropDeprecatedKeys, validateProjectConfig } from './schema.js'\nimport { loadTypedConfig } from './typed-config.js'\nimport { ConfigError, toErrorMessage } from '../utils/errors.js'\nimport { log } from '../utils/logger.js'\n\nexport const CONFIG_FILENAME = '.i18n-mcp.json'\n\n// The schema itself lives in ./schema.ts, shared with the typed-config loader.\n// Re-exported here because this has been its import path since before there\n// was a second config format.\nexport { validateProjectConfig } from './schema.js'\n\n// ─── Config file discovery ──────────────────────────────────────\n\n/**\n * Walk up the directory tree from `startDir` to find the nearest config file.\n * Returns the full path if found, null otherwise.\n */\nexport function findConfigFile(startDir: string): string | null {\n let dir = startDir\n while (true) {\n const candidate = join(dir, CONFIG_FILENAME)\n if (existsSync(candidate)) {\n return candidate\n }\n const parent = dirname(dir)\n if (parent === dir) break // filesystem root\n dir = parent\n }\n return null\n}\n\n/**\n * Load the project's declared configuration, from either place it can be\n * declared: `i18n-kit.config.ts` and `.i18n-mcp.json`. Both are searched from\n * projectDir upwards, the way ESLint, Prettier and tsconfig resolve configs.\n *\n * Returns null when neither exists — the case that must keep behaving exactly\n * as it did before there were two. Throws ConfigError when either file is\n * present but unusable, or when the two disagree.\n *\n * Every adapter funnels through here, which is what makes the typed config\n * work for all of them rather than for whichever one was taught about it.\n */\nexport async function loadProjectConfig(projectDir: string): Promise<ProjectConfig | null> {\n const [json, typed] = await Promise.all([\n loadJsonConfig(projectDir),\n loadTypedConfig(projectDir),\n ])\n\n if (!typed) return json?.config ?? null\n if (!json) return typed.config\n\n const conflicts = conflictingKeys(typed.config, json.config)\n if (conflicts.length > 0) {\n throw new ConfigError(\n `${conflicts.join(', ')} ${conflicts.length === 1 ? 'is' : 'are'} declared in both\\n`\n + ` ${typed.path}\\n`\n + ` ${json.path}\\n`\n + 'Neither wins — a reader cannot tell which one took effect. '\n + 'Delete the duplicate from one of them.',\n )\n }\n\n // Disjoint by the check above, so the spread order only decides where\n // untouched keys come from, not who wins.\n return { ...json.config, ...typed.config }\n}\n\n/** Keys present in both files, ignoring the JSON-only `$schema`. */\nfunction conflictingKeys(typed: ProjectConfig, json: ProjectConfig): string[] {\n const a = typed as Record<string, unknown>\n const b = json as Record<string, unknown>\n return Object.keys(a).filter(key => key !== '$schema' && a[key] !== undefined && b[key] !== undefined)\n}\n\n/**\n * Load the optional `.i18n-mcp.json`, with the path it was found at.\n * Returns null if no config file is found in any ancestor.\n * Throws ConfigError if a file is found but is invalid.\n */\nasync function loadJsonConfig(\n projectDir: string,\n): Promise<{ path: string, config: ProjectConfig } | null> {\n log.debug(`Searching for ${CONFIG_FILENAME} starting from: ${projectDir}`)\n\n const configPath = findConfigFile(projectDir)\n\n if (!configPath) {\n log.info(`No ${CONFIG_FILENAME} found in ${projectDir} or any parent directory — skipping`)\n return null\n }\n\n log.info(`Found project config: ${configPath}`)\n\n let raw: string\n try {\n raw = await readFile(configPath, 'utf-8')\n } catch (error) {\n throw new ConfigError(\n `Failed to read ${CONFIG_FILENAME}: ${toErrorMessage(error)}`,\n )\n }\n\n let parsed: unknown\n try {\n parsed = JSON.parse(raw)\n } catch (error) {\n throw new ConfigError(\n `Invalid JSON in ${CONFIG_FILENAME}: ${toErrorMessage(error)}`,\n )\n }\n\n const result = validateProjectConfig(parsed)\n\n if (!result.ok) {\n throw new ConfigError(`Invalid ${CONFIG_FILENAME}:\\n${result.error}`)\n }\n\n log.debug(`Project config loaded successfully from ${configPath}`)\n\n return { path: configPath, config: dropDeprecatedKeys(result.data, CONFIG_FILENAME) }\n}\n"],"mappings":";;;;;;;;AAIA,MAAa,MAAM,cAAc;CAC/B,QAAQ,QAAQ;CAChB,QAAQ,QAAQ;CACjB,CAAC,CAAC,QAAQ,eAAe;;;;;;;;;;;;;;;;;ACW1B,MAAM,iBAAiB,EAAE,QAAQ,CAAC,IAAI,EAAE,CAAC,QAAO,MAAK,EAAE,MAAM,CAAC,SAAS,GAAG,uCAAuC;AAEjH,MAAM,kBAAkB,EAAE,OAAO;CAC/B,OAAO,EAAE,QAAQ,CACd,SAAS,8DAAsE;CAClF,aAAa,EAAE,QAAQ,CACpB,SAAS,gEAAgE;CAC5E,MAAM,EAAE,QAAQ,CACb,SAAS,uEAAuE;CACpF,CAAC;AAEF,MAAM,uBAAuB,EAAE,MAAM,CACnC,eACG,SAAS,yEAA2E,EACvF,EAAE,OAAO;CACP,MAAM,eAAe,SAAS,uCAAuC;CACrE,OAAO,eAAe,SAAS,wCAAwC;CACxE,CAAC,CACH,CAAC;AAEF,MAAM,iBAAiB,EAAE,OAAO;CAC9B,MAAM,eACH,SAAS,sFAA0F;CACtG,QAAQ,EAAE,MAAM,eAAe,CAC5B,SAAS,uFAAuF;CACpG,CAAC;AAEF,MAAa,sBAAsB,EAAE,OAAO;CAC1C,SAAS,EAAE,QAAQ,CAChB,SAAS,yDAAyD,CAClE,UAAU;CACb,WAAW,EAAE,QAAQ,CAClB,SACC,iWAKD,CACA,UAAU;CACb,SAAS,EAAE,QAAQ,CAChB,SACC,8IAED,CACA,UAAU;CACb,YAAY,EAAE,MAAM,gBAAgB,CACjC,SACC,yIAED,CACA,UAAU;CACb,UAAU,EAAE,OAAO,EAAE,QAAQ,EAAE,EAAE,QAAQ,CAAC,CACvC,SACC,8HAED,CACA,UAAU;CACb,mBAAmB,EAAE,QAAQ,CAC1B,SACC,2IAED,CACA,UAAU;CACb,aAAa,EAAE,OAAO,EAAE,QAAQ,EAAE,EAAE,QAAQ,CAAC,CAC1C,SACC,yMAGD,CACA,UAAU;CACb,UAAU,EAAE,MAIV,EAAE,OAAO;EACP,KAAK,EAAE,QAAQ,CAAC,SAAS,wFAA0F;EACnH,MAAM,EAAE,QAAQ,CAAC,SAAS,sDAAsD,CAAC,UAAU;EAC5F,CAAC,CACC,SAAS,EAAE,QAAQ,CAAC,CACpB,SACC,6OAGD,CACJ,CACE,SACC,sIAED,CACA,UAAU;CACb,oBAAoB,EAAE,MAAM,EAAE,OAAO;EACnC,SAAS,eACN,SACC,gIAED;EACH,QAAQ,eACL,SACC,gIAED;EACJ,CAAC,CAAC,CACA,SACC,6UAID,CACA,UAAU;CACb,YAAY,EAAE,OAAO,EAAE,QAAQ,EAAE,EAAE,OAAO,EACxC,gBAAgB,EAAE,MAAM,EAAE,QAAQ,CAAC,CAChC,SACC,0UAID,CACA,UAAU,EAEd,CAAC,CAAC,aAAa,CAAC,CACd,SACC,yKAED,CACA,UAAU;CACb,YAAY,EAAE,MAAM,qBAAqB,CACtC,SACC,yJAED,CACA,UAAU;CACb,eAAe,eACZ,SAAS,gEAAgE,CACzE,UAAU;CACb,MAAM,EAAE,MAAM,eAAe,CAC1B,SACC,2NAGD,CACA,UAAU;CACb,eAAe,EAAE,KAAK,CAAC,QAAQ,MAAM,CAAC,CACnC,SACC,uNAGD,CACA,UAAU;CACb,SAAS,EAAE,MAAM,eAAe,CAC7B,SACC,0GAED,CACA,UAAU;CACb,kBAAkB,EAAE,MAAM,eAAe,CACtC,SACC,wSAID,CACA,UAAU;CACb,cAAc,EAAE,MAAM,CACpB,EAAE,QAAQ,KAAK,CACZ,SAAS,0EAA4E,EACxF,eACG,SAAS,8FAA8F,CAC3G,CAAC,CACC,SACC,2VAID,CACA,UAAU;CACb,kBAAkB,EAAE,KAAK;EAAC;EAAQ;EAAa;EAAO,CAAC,CACpD,SACC,0KAED,CACA,UAAU;CACb,mBAAmB,EAAE,SAAS,CAC3B,SACC,wUAID,CACA,UAAU;CACb,iBAAiB,eACd,SACC,8QAGD,CACA,UAAU;CAGb,qBAAqB,EAAE,SAAS,CAC7B,KAAK;EACJ,YAAY;EACZ,aACE;EAEH,CAAC,CACD,UAAU;CACd,CAAC,CAAC,QAAQ;;;;;;;AAQX,SAAgB,sBACd,OACkE;CAClE,MAAM,SAAS,oBAAoB,UAAU,MAAM;AACnD,KAAI,OAAO,QAAS,QAAO;EAAE,IAAI;EAAM,MAAM,OAAO;EAAuB;AAQ3E,QAAO;EAAE,IAAI;EAAO,OANN,OAAO,MAAM,OACxB,KAAK,UAAU;AAEd,UAAO,KADM,MAAM,KAAK,SAAS,IAAI,MAAM,KAAK,KAAK,IAAI,GAAG,SAC3C,IAAI,MAAM;IAC3B,CACD,KAAK,KAAK;EACc;;;;;;;;;AAU7B,SAAgB,mBAAmB,QAAuB,QAA+B;CACvF,MAAM,OAAO;AACb,KAAI,yBAAyB,MAAM;AACjC,MAAI,KACF,GAAG,OAAO,6IAEX;AACD,SAAO,KAAK;;AAEd,QAAO;;;;;;;;;;;;;;;;;;AClPT,MAAM,yBAAyB;CAC7B;CACA;CACA;CACA;CACA;CACA;CACD;;;;;;;AAQD,SAAgB,oBAAoB,UAAiC;CAInE,IAAI,MAAM,QAAQ,SAAS;AAC3B,QAAO,MAAM;EACX,MAAM,QAAQ,uBACX,KAAI,SAAQ,KAAK,KAAK,KAAK,CAAC,CAC5B,QAAO,SAAQ,WAAW,KAAK,CAAC;AAEnC,MAAI,MAAM,IAAI;AACZ,OAAI,MAAM,SAAS,EACjB,KAAI,KACF,+BAA+B,IAAI,IAAI,MAAM,KAAI,MAAK,EAAE,MAAM,IAAI,SAAS,EAAE,CAAC,CAAC,KAAK,KAAK,CAAC,WAC/E,MAAM,GAAG,MAAM,IAAI,SAAS,EAAE,CAAC,+CAC3C;AAEH,UAAO,MAAM;;EAGf,MAAM,SAAS,QAAQ,IAAI;AAC3B,MAAI,WAAW,IAAK;AACpB,QAAM;;AAER,QAAO;;;;;;;;;;;AAYT,eAAsB,gBACpB,YACyD;CACzD,MAAM,OAAO,oBAAoB,WAAW;AAC5C,KAAI,CAAC,MAAM;AACT,MAAI,MAAM,iCAAiC,WAAW,qCAAqC;AAC3F,SAAO;;AAGT,KAAI,KAAK,+BAA+B,OAAO;CAE/C,IAAI;AACJ,KAAI;EACF,MAAM,EAAE,eAAe,MAAM,OAAO;AASpC,WAAS,MAJI,WAAW,OAAO,KAAK,KAAK;GACvC,gBAAgB;GAChB,OAAO,WAAW;GACnB,CAAC,CACkB,OAAO,KAAK;UAE3B,OAAO;AACZ,QAAM,IAAI,YACR,kBAAkB,KAAK,IAAI,eAAe,MAAM,GACjD;;AAGH,KAAI,WAAW,QAAQ,OAAO,WAAW,SACvC,OAAM,IAAI,YACR,GAAG,KAAK,wGAET;CAOH,MAAM,WAAW,KAAK,SAAS,OAAO,IAAI,KAAK,SAAS,OAAO;AAC/D,KAAI,EAAE,aAAa,WAAW,CAAC,SAC7B,OAAM,IAAI,YACR,GAAG,KAAK,wGAET;CAGH,MAAM,WAAW,aAAa,SAAU,OAAgC,UAAU;AAElF,KAAI,aAAa,QAAQ,OAAO,aAAa,YAAY,MAAM,QAAQ,SAAS,CAC9E,OAAM,IAAI,YACR,GAAG,KAAK,2DAA2D,SAAS,SAAS,CAAC,2CAC1C,iBAAiB,IAC9D;CAGH,MAAM,SAAS,sBAAsB,SAAS;AAC9C,KAAI,CAAC,OAAO,GACV,OAAM,IAAI,YAAY,WAAW,KAAK,KAAK,OAAO,QAAQ;AAG5D,QAAO;EAAE;EAAM,QAAQ,mBAAmB,OAAO,MAAM,KAAK;EAAE;;;;;;;AAQhE,MAAM,mBAAmB;AACzB,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;AAmBpC,SAAS,YAAoC;AAG3C,MAAK,MAAM,aAAa;EAAC;EAAsB;EAAuB;EAAsB,EAAE;EAC5F,MAAM,OAAO,cAAc,IAAI,IAAI,WAAW,OAAO,KAAK,IAAI,CAAC;AAC/D,MAAI,WAAW,KAAK,CAClB,QAAO;IAAG,mBAAmB;IAAO,8BAA8B;GAAM;;AAG5E,QAAO,EAAE;;AAGX,SAAS,SAAS,OAAwB;AACxC,KAAI,UAAU,KAAM,QAAO;AAC3B,KAAI,MAAM,QAAQ,MAAM,CAAE,QAAO;AACjC,KAAI,OAAO,UAAU,WAAY,QAAO;AACxC,QAAO,OAAO;;;;AC3KhB,MAAa,kBAAkB;;;;;AAa/B,SAAgB,eAAe,UAAiC;CAC9D,IAAI,MAAM;AACV,QAAO,MAAM;EACX,MAAM,YAAY,KAAK,KAAK,gBAAgB;AAC5C,MAAI,WAAW,UAAU,CACvB,QAAO;EAET,MAAM,SAAS,QAAQ,IAAI;AAC3B,MAAI,WAAW,IAAK;AACpB,QAAM;;AAER,QAAO;;;;;;;;;;;;;;AAeT,eAAsB,kBAAkB,YAAmD;CACzF,MAAM,CAAC,MAAM,SAAS,MAAM,QAAQ,IAAI,CACtC,eAAe,WAAW,EAC1B,gBAAgB,WAAW,CAC5B,CAAC;AAEF,KAAI,CAAC,MAAO,QAAO,MAAM,UAAU;AACnC,KAAI,CAAC,KAAM,QAAO,MAAM;CAExB,MAAM,YAAY,gBAAgB,MAAM,QAAQ,KAAK,OAAO;AAC5D,KAAI,UAAU,SAAS,EACrB,OAAM,IAAI,YACR,GAAG,UAAU,KAAK,KAAK,CAAC,GAAG,UAAU,WAAW,IAAI,OAAO,MAAM,uBAC1D,MAAM,KAAK,MACX,KAAK,KAAK,qGAGlB;AAKH,QAAO;EAAE,GAAG,KAAK;EAAQ,GAAG,MAAM;EAAQ;;;AAI5C,SAAS,gBAAgB,OAAsB,MAA+B;CAC5E,MAAM,IAAI;CACV,MAAM,IAAI;AACV,QAAO,OAAO,KAAK,EAAE,CAAC,QAAO,QAAO,QAAQ,aAAa,EAAE,SAAS,KAAA,KAAa,EAAE,SAAS,KAAA,EAAU;;;;;;;AAQxG,eAAe,eACb,YACyD;AACzD,KAAI,MAAM,iBAAiB,gBAAgB,kBAAkB,aAAa;CAE1E,MAAM,aAAa,eAAe,WAAW;AAE7C,KAAI,CAAC,YAAY;AACf,MAAI,KAAK,MAAM,gBAAgB,YAAY,WAAW,qCAAqC;AAC3F,SAAO;;AAGT,KAAI,KAAK,yBAAyB,aAAa;CAE/C,IAAI;AACJ,KAAI;AACF,QAAM,MAAM,SAAS,YAAY,QAAQ;UAClC,OAAO;AACd,QAAM,IAAI,YACR,kBAAkB,gBAAgB,IAAI,eAAe,MAAM,GAC5D;;CAGH,IAAI;AACJ,KAAI;AACF,WAAS,KAAK,MAAM,IAAI;UACjB,OAAO;AACd,QAAM,IAAI,YACR,mBAAmB,gBAAgB,IAAI,eAAe,MAAM,GAC7D;;CAGH,MAAM,SAAS,sBAAsB,OAAO;AAE5C,KAAI,CAAC,OAAO,GACV,OAAM,IAAI,YAAY,WAAW,gBAAgB,KAAK,OAAO,QAAQ;AAGvE,KAAI,MAAM,2CAA2C,aAAa;AAElE,QAAO;EAAE,MAAM;EAAY,QAAQ,mBAAmB,OAAO,MAAM,gBAAgB;EAAE"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@the-i18n-kit/cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0",
|
|
4
4
|
"description": "Find missing translations, remove dead keys, rename across all locales at once — for Nuxt, Laravel, Vue, React/Next.js, or any project with JSON, YAML or PHP locale files",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"i18n",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"define-config-ChY3jk6K.d.ts","names":[],"sources":["../src/adapters/types.ts","../src/config/types.ts","../src/define-config.ts"],"sourcesContent":[],"mappings":";AAEY,KAAA,gBAAA,GAAgB,MAAA,GAAA,WAAA,GAAA,MAAA;;;AAA5B;;;UCGiB,gBAAA;EAAA;EAcA,IAAA,EAAA,MAAS;EAWT;EAmBA,QAAA,EAAA,MAAa;EAAA;MAMf,CAAA,EAAA,MAAA;;MAUC,CAAA,EAAA,MAAA;;;;;AAqBP,UAnEQ,SAAA,CAmER;;EAgB4B,IAAA,EAAA,MAAA;EAsBpB;EAAU,KAAA,EAAA,MAAA;;cAUhB,EAAA,MAAA;;SAMO,CAAA,EAAA,MAAA;;AAIV,UAlHS,OAAA,CAkHT;EAAO;;;;EC5HH;EAQI,MAAA,EAAA,MAAA,EAAA;EAAmB;;;;;;;;;;;UDqBlB,aAAA;;;;;;eAMF;;;;;;aAMF;;;;gBAIG;;;;;;aAMH;;;MAAuC;;eAErC;;;;;;;;;;;eAWA;;;;;SAEN;;;;;;;;;;;;;;;;;;;qBAgBY;;;;;;;;;;;;;;;;;;;;;UAsBJ,UAAA;;;;;;;;kBAQC;;WAEP;;cAEG;;;;kBAII;;qBAEG;;QAEb;;;;;;;;;AA1C6B,KClFzB,aAAA,GAAgB,aDkFS;AAsBrC;;;;;;AAkBqB,iBClHL,mBAAA,CDkHK,MAAA,EClHuB,aDkHvB,CAAA,EClHuC,aDkHvC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index-CdjJ71Ag.d.ts","names":[],"sources":["../src/config/layer-graph.ts","../src/core/types.ts","../src/core/shared.ts","../src/core/translate/targets.ts","../src/core/translate/run.ts","../src/core/ops-read.ts","../src/core/ops-write.ts","../src/core/ops-status.ts","../src/scanner/frontends/types.ts","../src/scanner/frontends/php/patterns.ts","../src/scanner/patterns.ts","../src/scanner/code-scanner.ts","../src/core/ops-orphans.ts","../src/core/ops-duplicates.ts","../src/core/ops-check.ts","../src/core/codequality.ts","../src/surface/types.ts","../src/surface/descriptors.ts","../src/surface/report.ts","../src/config/cache.ts","../src/config/detector.ts","../src/scanner/frontends/oxc.ts","../src/scanner/frontends/patterns.ts","../src/scanner/frontends/php/index.ts","../src/scanner/frontends/php/blade.ts","../src/io/locale-data.ts","../src/utils/errors.ts","../src/llm/providers.ts","../src/config/project-config.ts"],"sourcesContent":[],"mappings":"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"}
|