clipcc-extension-cli
v2.2.1
Published
CLI for ClipCC extension development.
Downloads
4
Readme
ClipCC Extension CLI
Installation
npm install -g clipcc-extension-cli
# or
yarn global add clipcc-extension-cli
Usage
mkdir your.extension.id
cd your.extension.id
ccext-cli
Then you will be asked several information.
____
/ \
| |
| | | Welcome to use clipcc-extension-cli!
| | | | Version: <cli version>
\ \__/ /
\____/
? Extension ID: your.extension.id
? Name: Your Extension Name
? Description: Your Extension Description.
? Version: 1.0.0
? Author: Your Name
? Choose your development language:
? Choose your package manager:
? Choose your bundler:
? Use git? Y/n
Note:
your.extension.id
must be an valid id, which only contains a-z, 0-9 and_
, and is split by.
. To avoid id conflict, a recommended id isname.extension
, containing both your extension name and your own name (or your team/organization's name) with lower letters (numbers and_
shouldn't be used if not necessary), likealexcui.random
,clipteam.community
, etc.- We do recommend to use yarn as your package manager.