A collection of useful CLI tools for everyday developer tasks – clean code, automate small fixes, and speed up your workflow.
npm install -g devbox
This package provides the devbox
command-line tool.
Run devbox
without arguments to see available commands:
devbox
Removes single-line comments from TypeScript (.ts
, .tsx
) files.
Usage:
devbox remove-comments [directory]
[directory]
(optional): The directory to scan for TypeScript files. If not provided, the current working directory is used.
Examples:
To remove comments from files in the current directory:
devbox remove-comments
To remove comments from files in a specific directory:
devbox remove-comments path/to/your/typescript/project
Contributions are welcome! Please open an issue or submit a pull request.