Creation:2024-08-11Last update:2025-11-22

    SDK CLI

    El SDK CLI es una biblioteca que te permite usar el CLI de Intlayer en tu propio código.

    bash
    npm install @intlayer/cli --save-dev

    Ejemplo de uso:

    ts
    import {  push,  pull,  fill,  build,  listContentDeclaration,  testMissingTranslations,  docTranslate,  docReview,  extract,} from "@intlayer/cli";push();// ...pull();// ...fill();// ...build();// ...listContentDeclaration();// ...testMissingTranslations();// ...docTranslate();// ...docReview();// ...extract();// ...