From 0882ade15ad7b889b8652b50fa1c5453ea0c2e4f Mon Sep 17 00:00:00 2001 From: Masaharu Tashiro Date: Fri, 25 Oct 2024 05:19:03 +0900 Subject: [PATCH] add command guide in docs --- website/docs/guide/commands/plugin-pack.md | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 website/docs/guide/commands/plugin-pack.md diff --git a/website/docs/guide/commands/plugin-pack.md b/website/docs/guide/commands/plugin-pack.md new file mode 100644 index 0000000000..e627e70eb8 --- /dev/null +++ b/website/docs/guide/commands/plugin-pack.md @@ -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.
Default to plugin.zip on current directory. | +| `--private-key ` | | The path of private key file
If omitted, new private key will be generated. |