ToolJet/cli
dependabot[bot] 75b59e0053
Bump shelljs from 0.8.4 to 0.8.5 in /cli (#2038)
Bumps [shelljs](https://github.com/shelljs/shelljs) from 0.8.4 to 0.8.5.
- [Release notes](https://github.com/shelljs/shelljs/releases)
- [Changelog](https://github.com/shelljs/shelljs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/shelljs/shelljs/compare/v0.8.4...v0.8.5)

---
updated-dependencies:
- dependency-name: shelljs
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-01-31 16:52:36 +05:30
..
bin Add tooljet cli (#1611) 2022-01-17 22:28:15 +05:30
src Add tooljet cli (#1611) 2022-01-17 22:28:15 +05:30
test Add tooljet cli (#1611) 2022-01-17 22:28:15 +05:30
.gitignore Add tooljet cli (#1611) 2022-01-17 22:28:15 +05:30
package-lock.json Bump shelljs from 0.8.4 to 0.8.5 in /cli (#2038) 2022-01-31 16:52:36 +05:30
package.json Add tooljet cli (#1611) 2022-01-17 22:28:15 +05:30
README.md Add tooljet cli (#1611) 2022-01-17 22:28:15 +05:30
tsconfig.json Add tooljet cli (#1611) 2022-01-17 22:28:15 +05:30

tooljet cli

Usage

$ npm install -g tooljet
$ tooljet COMMAND
running command...
$ tooljet (--version)
tooljet/0.0.5 darwin-x64 node-v15.14.0
$ tooljet --help [COMMAND]
USAGE
  $ tooljet COMMAND
...

Commands

tooljet plugin create PLUGIN_NAME

Create a new tooljet plugin

USAGE
  $ tooljet plugin create [PLUGIN_NAME] [--type database|api|cloud-storage]

ARGUMENTS
  PLUGIN_NAME  Name of the plugin

FLAGS
  --type=<option>  <options: database|api|cloud-storage>

DESCRIPTION
  Create a new tooljet plugin

EXAMPLES
  $ tooljet plugin create <name> --type=<database | api | cloud-storage>

tooljet plugin delete PLUGIN_NAME

Delete a tooljet plugin

USAGE
  $ tooljet plugin delete [PLUGIN_NAME]

ARGUMENTS
  PLUGIN_NAME  Name of the plugin

DESCRIPTION
  Delete a tooljet plugin

EXAMPLES
  $ tooljet plugin delete <name>

tooljet plugin install NPM_MODULE

Installs a new npm module inside a tooljet plugin

USAGE
  $ tooljet plugin install [NPM_MODULE] --plugin <value>

ARGUMENTS
  NPM_MODULE  Name of the npm module

FLAGS
  --plugin=<value>  (required)

DESCRIPTION
  Installs a new npm module inside a tooljet plugin

EXAMPLES
  $ tooljet plugin install <npm_module> --plugin <plugin_name>