oclif example Hello World CLI
$ npm install -g lucy-in-the-sky-cli
$ lucy-in-the-sky-cli COMMAND
running command...
$ lucy-in-the-sky-cli (--version)
lucy-in-the-sky-cli/0.2.0 darwin-x64 node-v14.15.5
$ lucy-in-the-sky-cli --help [COMMAND]
USAGE
$ lucy-in-the-sky-cli COMMAND
...
lucy-in-the-sky-cli generate-table
lucy-in-the-sky-cli hello PERSON
lucy-in-the-sky-cli help [COMMAND]
lucy-in-the-sky-cli plugins
lucy-in-the-sky-cli plugins:inspect PLUGIN...
lucy-in-the-sky-cli plugins:install PLUGIN...
lucy-in-the-sky-cli plugins:link PLUGIN
lucy-in-the-sky-cli plugins:uninstall PLUGIN...
lucy-in-the-sky-cli plugins update
Generate table for admin dashboard
USAGE
$ lucy-in-the-sky-cli generate-table -f <value>
FLAGS
-f, --file=<value> (required) Path to json file with description
DESCRIPTION
Generate table for admin dashboard
EXAMPLES
$ lucy-in-the-sky-cli generate-table
See code: dist/commands/generate-table.ts
Say hello
USAGE
$ lucy-in-the-sky-cli hello [PERSON] -f <value>
ARGUMENTS
PERSON Person to say hello to
FLAGS
-f, --from=<value> (required) Whom is saying hello
DESCRIPTION
Say hello
EXAMPLES
$ oex hello friend --from oclif
hello friend from oclif! (./src/commands/hello/index.ts)
See code: dist/commands/hello/index.ts
Display help for lucy-in-the-sky-cli.
USAGE
$ lucy-in-the-sky-cli help [COMMAND] [-n]
ARGUMENTS
COMMAND Command to show help for.
FLAGS
-n, --nested-commands Include all nested commands in the output.
DESCRIPTION
Display help for lucy-in-the-sky-cli.
See code: @oclif/plugin-help
List installed plugins.
USAGE
$ lucy-in-the-sky-cli plugins [--core]
FLAGS
--core Show core plugins.
DESCRIPTION
List installed plugins.
EXAMPLES
$ lucy-in-the-sky-cli plugins
See code: @oclif/plugin-plugins
Displays installation properties of a plugin.
USAGE
$ lucy-in-the-sky-cli plugins:inspect PLUGIN...
ARGUMENTS
PLUGIN [default: .] Plugin to inspect.
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Displays installation properties of a plugin.
EXAMPLES
$ lucy-in-the-sky-cli plugins:inspect myplugin
Installs a plugin into the CLI.
USAGE
$ lucy-in-the-sky-cli plugins:install PLUGIN...
ARGUMENTS
PLUGIN Plugin to install.
FLAGS
-f, --force Run yarn install with force flag.
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Installs a plugin into the CLI.
Can be installed from npm or a git url.
Installation of a user-installed plugin will override a core plugin.
e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
the CLI without the need to patch and update the whole CLI.
ALIASES
$ lucy-in-the-sky-cli plugins add
EXAMPLES
$ lucy-in-the-sky-cli plugins:install myplugin
$ lucy-in-the-sky-cli plugins:install https://github.com/someuser/someplugin
$ lucy-in-the-sky-cli plugins:install someuser/someplugin
Links a plugin into the CLI for development.
USAGE
$ lucy-in-the-sky-cli plugins:link PLUGIN
ARGUMENTS
PATH [default: .] path to plugin
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Links a plugin into the CLI for development.
Installation of a linked plugin will override a user-installed or core plugin.
e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
command will override the user-installed or core plugin implementation. This is useful for development work.
EXAMPLES
$ lucy-in-the-sky-cli plugins:link myplugin
Removes a plugin from the CLI.
USAGE
$ lucy-in-the-sky-cli plugins:uninstall PLUGIN...
ARGUMENTS
PLUGIN plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ lucy-in-the-sky-cli plugins unlink
$ lucy-in-the-sky-cli plugins remove
Update installed plugins.
USAGE
$ lucy-in-the-sky-cli plugins update [-h] [-v]
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Update installed plugins.