UNPKG

@intlayer/chokidar

Version:

Uses chokidar to scan and build Intlayer declaration files into dictionaries based on Intlayer configuration.

16 lines 1.85 kB
import { prepareIntlayer } from "./prepareIntlayer.js"; import { detectExportedComponentName } from "./writeContentDeclaration/detectExportedComponentName.js"; import { DictionaryStatus } from "./writeContentDeclaration/dictionaryStatus.js"; import { transformJSFile } from "./writeContentDeclaration/transformJSFile.js"; import { writeContentDeclaration } from "./writeContentDeclaration/writeContentDeclaration.js"; import { writeJSFile } from "./writeContentDeclaration/writeJSFile.js"; import { detectFormatCommand } from "./detectFormatCommand.js"; import { getContentDeclarationFileTemplate } from "./getContentDeclarationFileTemplate/getContentDeclarationFileTemplate.js"; import { InitOptions, initIntlayer } from "./init/index.js"; import { PLATFORMS, PLATFORMS_METADATA, Platform, PlatformMetadata, SKILLS, SKILLS_METADATA, Skill, getInitialSkills, installSkills } from "./installSkills/index.js"; import { MCPTransport, installMCP } from "./installMCP/installMCP.js"; import { listDictionaries, listDictionariesWithStats } from "./listDictionariesPath.js"; import { DiffMode, ListGitFilesOptions, ListGitLinesOptions, listGitFiles, listGitLines } from "./listGitFiles.js"; import { ListProjectsOptions, listProjects } from "./listProjects.js"; import { logConfigDetails } from "./logConfigDetails.js"; export { DictionaryStatus, DiffMode, InitOptions, ListGitFilesOptions, ListGitLinesOptions, ListProjectsOptions, MCPTransport, PLATFORMS, PLATFORMS_METADATA, Platform, PlatformMetadata, SKILLS, SKILLS_METADATA, Skill, detectExportedComponentName, detectFormatCommand, getContentDeclarationFileTemplate, getInitialSkills, initIntlayer, installMCP, installSkills, listDictionaries, listDictionariesWithStats, listGitFiles, listGitLines, listProjects, logConfigDetails, prepareIntlayer, transformJSFile, writeContentDeclaration, writeJSFile };