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

    CLI SDK

    CLI SDK to biblioteka, która pozwala na używanie Intlayer CLI w Twoim własnym kodzie.

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

    Przykład użycia:

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