@intlayer/chokidar
Version:
Uses chokidar to scan and build Intlayer declaration files into dictionaries based on Intlayer configuration.
43 lines • 1.57 kB
JavaScript
import {
watch,
handleAdditionalContentDeclarationFile,
handleContentDeclarationFileChange,
buildAndWatchIntlayer
} from "./chokidar/watcher.mjs";
import { prepareIntlayer } from "./prepareIntlayer.mjs";
import { buildDictionary } from "./transpiler/declaration_file_to_dictionary/index.mjs";
import { createDictionaryEntryPoint } from "./transpiler/dictionary_to_main/createDictionaryEntryPoint.mjs";
import { createModuleAugmentation } from "./transpiler/dictionary_to_type/createModuleAugmentation.mjs";
import { fetchDistantDictionaries } from "./fetchDistantDictionaries.mjs";
import { fetchDistantDictionaryKeys } from "./fetchDistantDictionaryKeys.mjs";
import {
loadDistantDictionaries,
loadDictionaries,
loadLocalDictionaries
} from "./loadDictionaries/index.mjs";
import { checkDictionaryChanges } from "./checkDictionaryChanges.mjs";
import { listDictionaries } from "./listDictionariesPath.mjs";
import { prepareContentDeclaration } from "./prepareContentDeclaration.mjs";
import {
writeContentDeclaration
} from "./writeContentDeclaration/index.mjs";
export {
buildAndWatchIntlayer,
buildDictionary,
checkDictionaryChanges,
createDictionaryEntryPoint,
createModuleAugmentation,
fetchDistantDictionaries,
fetchDistantDictionaryKeys,
handleAdditionalContentDeclarationFile,
handleContentDeclarationFileChange,
listDictionaries,
loadDictionaries,
loadDistantDictionaries,
loadLocalDictionaries,
prepareContentDeclaration,
prepareIntlayer,
watch,
writeContentDeclaration
};
//# sourceMappingURL=index.mjs.map