@rxap/plugin-localazy
Version:
This package provides executors and generators for integrating Localazy, a translation management platform, into Nx workspaces. It allows for downloading and uploading translations, managing configuration, and initializing Localazy within a project. The p
13 lines (12 loc) • 361 B
TypeScript
export interface ConfigGeneratorSchema {
/** The name of the project. */
project: string;
/** The target that extracts or generate the translation source file. */
extractTarget?: string;
/** The localazy write key. */
writeKey?: string;
/** The localazy read key. */
readKey?: string;
/** Overwrite existing files. */
overwrite?: boolean;
}