Ask your question and get a summary of the document by referencing this page and the AI provider of your choice
Version History
- "Add absolute output option to list projects command"v7.5.1206/01/2026
The content of this page was translated using an AI.
See the last version of the original content in EnglishIf you have an idea for improving this documentation, please feel free to contribute by submitting a pull request on GitHub.
GitHub link to the documentationCopy doc Markdown to clipboard
List Intlayer Projects
Copy the code to the clipboard
This command searches for and lists all Intlayer projects by finding directories that contain Intlayer configuration files. It is useful for discovering all Intlayer projects in a monorepo, workspace or git repository.
Aliases:
npx intlayer projects-listnpx intlayer pl
Arguments:
--base-dir [path]: Specify the base directory to search from. Defaults to the current working directory.Example:
npx intlayer projects list --base-dir /path/to/workspaceExample:
npx intlayer projects list --base-dir /path/to/workspace--git-root: Search from the git root directory rather than the base directory. This is useful for finding all Intlayer projects in a monorepo or git repository.Example:
npx intlayer projects list --git-root--json: Output the results as JSON instead of formatted text. Useful for scripting and programmatic access.Example:
npx intlayer projects list --json--absolute: Output the results as absolute paths instead of relative paths.Example:
npx intlayer projects list --absolute
How it works:
The command searches for Intlayer configuration files in the specified directory (or the git root if --git-root is used). It looks for the following configuration file patterns:
intlayer.config.tsintlayer.config.jsintlayer.config.jsonintlayer.config.cjsintlayer.config.mjs.intlayerrc
Each directory containing one of these files is considered an Intlayer project and will be listed in the output.
Examples:
List projects in current directory:
Copy the code to the clipboard
List projects in a specific directory:
Copy the code to the clipboard
List all projects in the git repository:
Copy the code to the clipboard
Using the shortcut alias:
Copy the code to the clipboard
Output as JSON:
Copy the code to the clipboard
Example output:
Formatted output:
Copy the code to the clipboard
JSON output:
Copy the code to the clipboard
Use cases:
- Monorepo management: Discover all Intlayer projects in a monorepo structure
- Project discovery: Find all Intlayer-enabled projects in a workspace
- CI/CD: Verify Intlayer projects in automated workflows
- Documentation: Generate documentation that lists all projects using Intlayer
The output provides absolute paths to each project directory, making it easy to navigate to them or to script operations across multiple Intlayer projects.