Skip to content

Latest commit

 

History

History
76 lines (59 loc) · 2.21 KB

File metadata and controls

76 lines (59 loc) · 2.21 KB
createdAt 2024-08-11
updatedAt 2025-11-22
title Debug Intlayer Command
description Learn how to debug and troubleshoot Intlayer CLI issues.
keywords
Debug
Troubleshoot
CLI
Intlayer
slugs
doc
concept
cli
debug

Debug intlayer command

1. Ensure you're using the latest version

Run:

npx intlayer --version                  # current locale intlayer version
npx intlayer@latest --version           # current latest intlayer version
yarn intlayer --version                  # current locale intlayer version
yarn intlayer@latest --version           # current latest intlayer version
pnpm intlayer --version                  # current locale intlayer version
pnpm intlayer@latest --version           # current latest intlayer version
bun x intlayer --version                  # current locale intlayer version
bun x intlayer@latest --version           # current latest intlayer version

2. Check if the command is registered

You can check with:

npx intlayer --help                     # Shows the list of available commands and usage information
npx intlayer dictionary build --help    # Shows the list of available options for a command
yarn intlayer --help                     # Shows the list of available commands and usage information
yarn intlayer dictionary build --help    # Shows the list of available options for a command
pnpm intlayer --help                     # Shows the list of available commands and usage information
pnpm intlayer dictionary build --help    # Shows the list of available options for a command
bun x intlayer --help                     # Shows the list of available commands and usage information
bun x intlayer dictionary build --help    # Shows the list of available options for a command

3. Restart your terminal

Sometimes a terminal restart is needed to recognize new commands.

4. Clear npx cache (if you're stuck with an older version)

npx clear-npx-cache