@intlayer/chokidar
Version:
Uses chokidar to scan and build Intlayer declaration files into dictionaries based on Intlayer configuration.
21 lines • 1.92 kB
TypeScript
import { Extension, Format, getExtensionFromFormat, getFormatFromExtension } from "./getFormatFromExtension.js";
import { autoDecorateContent } from "./autoDecorateContent.js";
import { buildComponentFilesList } from "./buildComponentFilesList.js";
import { JSONObject, JsonChunk, assembleJSON, chunkJSON, reconstructFromSingleChunk } from "./chunkJSON.js";
import { formatLocale, formatPath } from "./formatter.js";
import { getChunk } from "./getChunk.js";
import { getContentExtension } from "./getContentExtension.js";
import { getPathHash } from "./getPathHash.js";
import { mergeChunks } from "./mergeChunks.js";
import { parallelize } from "./parallelize.js";
import { Queue, pLimit } from "./pLimit.js";
import { getGlobalLimiter, getTaskLimiter, parallelizeGlobal } from "./parallelizeGlobal.js";
import { Primitive, Recursive, excludeObjectFormat, reduceObjectFormat } from "./reduceObjectFormat.js";
import { resolveObjectPromises } from "./resolveObjectPromises.js";
import { resolveRelativePath } from "./resolveRelativePath.js";
import { runOnce } from "./runOnce.js";
import { ParallelHandle, runParallel } from "./runParallel/index.js";
import { sortAlphabetically } from "./sortAlphabetically.js";
import { splitTextByLines } from "./splitTextByLine.js";
import { verifyIdenticObjectFormat } from "./verifyIdenticObjectFormat.js";
export { Extension, Format, JSONObject, JsonChunk, ParallelHandle, Primitive, Queue, Recursive, assembleJSON, autoDecorateContent, buildComponentFilesList, chunkJSON, excludeObjectFormat, formatLocale, formatPath, getChunk, getContentExtension, getExtensionFromFormat, getFormatFromExtension, getGlobalLimiter, getPathHash, getTaskLimiter, mergeChunks, pLimit, parallelize, parallelizeGlobal, reconstructFromSingleChunk, reduceObjectFormat, resolveObjectPromises, resolveRelativePath, runOnce, runParallel, sortAlphabetically, splitTextByLines, verifyIdenticObjectFormat };