Receive notifications about upcoming Intlayer releases
    Creation:2024-08-11Last update:2025-11-22

    CLI SDK

    The CLI SDK is a library that allows you to use the Intlayer CLI in your own code.

    npm install @intlayer/cli --save-dev

    Example of usage:

    import {  push,  pull,  fill,  build,  listContentDeclaration,  testMissingTranslations,  docTranslate,  docReview,  transform,} from "@intlayer/cli";push();// ...pull();// ...fill();// ...build();// ...listContentDeclaration();// ...testMissingTranslations();// ...docTranslate();// ...docReview();// ...transform();// ...
    Receive notifications about upcoming Intlayer releases