-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
sidebar_position: 500 | ||
draft: true | ||
--- | ||
|
||
# plugin pack | ||
|
||
The `plugin` command allows you to packaging kintone plugin project. | ||
|
||
:::experimental | ||
|
||
This feature is under early development. | ||
|
||
::: | ||
|
||
## Example | ||
|
||
```shell | ||
cli-kintone plugin pack \ | ||
--input ./src \ | ||
--output ./dist \ | ||
--private-key ./key.ppk | ||
``` | ||
|
||
## Options | ||
|
||
See [Options](/guide/options) page for common options. | ||
|
||
| Option | Required | Description | | ||
| ----------------- | -------- | ---------------------------------------------------------------------------------------------- | | ||
| `--input` | Yes | The input plugin project directory. | | ||
| `--output` | | The destination path of generated plugin file.<br/>Default to plugin.zip on current directory. | | ||
| `--private-key ` | | The path of private key file<br/>If omitted, new private key will be generated. | |