@teenageinterface/cli v0.1.0
Teenage Interface CLI
Teenage Interface CLI is a command-line interface tool for managing and installing packages from the Teenage Interface library. It allows you to easily install one or more packages from the Teenage Interface framework, with interactive prompts and options.
Table of Contents
Installation
To install the CLI globally, run the following command:
npm install -g @teenageinterface/cli
Alternatively, you can add it to your project as a development dependency:
npm install --save-dev @teenageinterface/cli
Usage
Once installed, you can use the tgi
command in your terminal to install packages.
Install a single package
To install a specific package, run the following command:
teenage-interface-cli install
Example:
tgi install avatar
Install all packages
To install all available packages, use the --all
option or the -a
alias:
tgi install --all
# or
tgi install -a
Interactive installation
If you don't specify a package, the CLI will prompt you to select one or more packages interactively. Use the following command:
tgi install
You will be presented with a list of available packages to choose from.
Help
For more information on the available commands, run:
tgi --help
This will display all available commands, descriptions, and options.
Contributing
We welcome contributions! To contribute to the project:
- Fork the repository.
- Create a new branch (
git checkout -b features/{name}
). - Commit your changes (
git commit -am 'Add feature'
). - Push to the branch (
git push origin features/{name}
). - Create a new Pull Request.
Please make sure to write tests for any new features or bug fixes.
Documentation
For more information, visit the official documentation.
Repository
The source code is available on GitHub.
License
This project is licensed under the MIT License.
Thank you for using Teenage Interface CLI! If you have any questions or suggestions, feel free to open an issue or submit a pull request.
6 months ago