Skip to content

Commit

Permalink
Merge pull request #40 from kintone-labs/SSR-1814
Browse files Browse the repository at this point in the history
Developing and releasing
  • Loading branch information
josh-vo authored Oct 15, 2021
2 parents 6a8d514 + 48fe76a commit 6b71683
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ Sample `config.json` file:
"js": "{YOUR_APP_NAME}/{PATH_TO_YOUR_CONFIG_JS}"
},
"icon": "{YOUR_APP_NAME}/{PATH_TO_YOUR_ICON}",
"version": "{PLUGIN_VERSION}"/{PLUGIN_VERSION_NUMBER}
}
}
```
Expand All @@ -165,6 +166,7 @@ Sample `config.json` file:
| uploadConfig.config.css | | Array<String> | CSS files / URLs for kintone plugin's config page |
| uploadConfig.config.required_params | | Array<String> | An array of parameters that are required to be filled in in the Plug-in Settings page. Must be between 1 to 64 ASCII characters. |
| uploadConfig.icon | Plugin only | String | Plugin's icon |
| uploadConfig.version | Plugin only | String or Integer | Plugin's version |

### 3. Start dev
``
Expand Down
15 changes: 11 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kintone-cli",
"version": "0.1.6",
"version": "0.2.0",
"description": "",
"main": "dist/index.js",
"scripts": {
Expand All @@ -15,6 +15,7 @@
"dist"
],
"dependencies": {
"ansi-regex": "^5.0.1",
"axios": "^0.21.2",
"chalk": "^2.4.2",
"commander": "^2.19.0",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ global['cliRoot'] = path.resolve(path.dirname(require.main.filename) + "/../");
global['currentDir'] = process.cwd();

program
.version('0.1.6')
.version('0.2.0')
.description('kintone Node CLI');

initializeCommand(program)
Expand Down

0 comments on commit 6b71683

Please sign in to comment.