@rolder/cli
v0.6.0
Published
Rolder CLI
Downloads
5
Readme
rolder-cli
Usage
$ npm install -g @rolder/cli
$ rcli COMMAND
running command...
$ rcli (--version)
@rolder/cli/0.6.0 linux-x64 node-v20.15.1
$ rcli --help [COMMAND]
USAGE
$ rcli COMMAND
...Commands
rcli deploy [PROJECT] [STAGE]rcli help [COMMAND]rcli pluginsrcli plugins add PLUGINrcli plugins:inspect PLUGIN...rcli plugins install PLUGINrcli plugins link PATHrcli plugins remove [PLUGIN]rcli plugins resetrcli plugins uninstall [PLUGIN]rcli plugins unlink [PLUGIN]rcli plugins update
rcli deploy [PROJECT] [STAGE]
Replace frontend files at Yandex Object Storage with Noodl deployed self-hosted folder
USAGE
$ rcli deploy [PROJECT] [STAGE]
ARGUMENTS
PROJECT Project name
STAGE (dev|test|prod) Project stage environment
DESCRIPTION
Replace frontend files at Yandex Object Storage with Noodl deployed self-hosted folder
EXAMPLES
$ rcli deploySee code: src/commands/deploy/index.ts
rcli help [COMMAND]
Display help for rcli.
USAGE
$ rcli 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 rcli.See code: @oclif/plugin-help
rcli plugins
List installed plugins.
USAGE
$ rcli plugins [--json] [--core]
FLAGS
--core Show core plugins.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
List installed plugins.
EXAMPLES
$ rcli pluginsSee code: @oclif/plugin-plugins
rcli plugins add PLUGIN
Installs a plugin into rcli.
USAGE
$ rcli plugins add PLUGIN... [--json] [-f] [-h] [-s | -v]
ARGUMENTS
PLUGIN... Plugin to install.
FLAGS
-f, --force Force npm to fetch remote resources even if a local copy exists on disk.
-h, --help Show CLI help.
-s, --silent Silences npm output.
-v, --verbose Show verbose npm output.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Installs a plugin into rcli.
Uses bundled npm executable to install plugins into /home/decard/.local/share/rcli
Installation of a user-installed plugin will override a core plugin.
Use the RCLI_NPM_LOG_LEVEL environment variable to set the npm loglevel.
Use the RCLI_NPM_REGISTRY environment variable to set the npm registry.
ALIASES
$ rcli plugins add
EXAMPLES
Install a plugin from npm registry.
$ rcli plugins add myplugin
Install a plugin from a github url.
$ rcli plugins add https://github.com/someuser/someplugin
Install a plugin from a github slug.
$ rcli plugins add someuser/somepluginrcli plugins:inspect PLUGIN...
Displays installation properties of a plugin.
USAGE
$ rcli plugins inspect PLUGIN...
ARGUMENTS
PLUGIN... [default: .] Plugin to inspect.
FLAGS
-h, --help Show CLI help.
-v, --verbose
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Displays installation properties of a plugin.
EXAMPLES
$ rcli plugins inspect mypluginSee code: @oclif/plugin-plugins
rcli plugins install PLUGIN
Installs a plugin into rcli.
USAGE
$ rcli plugins install PLUGIN... [--json] [-f] [-h] [-s | -v]
ARGUMENTS
PLUGIN... Plugin to install.
FLAGS
-f, --force Force npm to fetch remote resources even if a local copy exists on disk.
-h, --help Show CLI help.
-s, --silent Silences npm output.
-v, --verbose Show verbose npm output.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Installs a plugin into rcli.
Uses bundled npm executable to install plugins into /home/decard/.local/share/rcli
Installation of a user-installed plugin will override a core plugin.
Use the RCLI_NPM_LOG_LEVEL environment variable to set the npm loglevel.
Use the RCLI_NPM_REGISTRY environment variable to set the npm registry.
ALIASES
$ rcli plugins add
EXAMPLES
Install a plugin from npm registry.
$ rcli plugins install myplugin
Install a plugin from a github url.
$ rcli plugins install https://github.com/someuser/someplugin
Install a plugin from a github slug.
$ rcli plugins install someuser/somepluginSee code: @oclif/plugin-plugins
rcli plugins link PATH
Links a plugin into the CLI for development.
USAGE
$ rcli plugins link PATH [-h] [--install] [-v]
ARGUMENTS
PATH [default: .] path to plugin
FLAGS
-h, --help Show CLI help.
-v, --verbose
--[no-]install Install dependencies after linking the plugin.
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
$ rcli plugins link mypluginSee code: @oclif/plugin-plugins
rcli plugins remove [PLUGIN]
Removes a plugin from the CLI.
USAGE
$ rcli plugins remove [PLUGIN...] [-h] [-v]
ARGUMENTS
PLUGIN... plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ rcli plugins unlink
$ rcli plugins remove
EXAMPLES
$ rcli plugins remove mypluginrcli plugins reset
Remove all user-installed and linked plugins.
USAGE
$ rcli plugins reset [--hard] [--reinstall]
FLAGS
--hard Delete node_modules and package manager related files in addition to uninstalling plugins.
--reinstall Reinstall all plugins after uninstalling.See code: @oclif/plugin-plugins
rcli plugins uninstall [PLUGIN]
Removes a plugin from the CLI.
USAGE
$ rcli plugins uninstall [PLUGIN...] [-h] [-v]
ARGUMENTS
PLUGIN... plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ rcli plugins unlink
$ rcli plugins remove
EXAMPLES
$ rcli plugins uninstall mypluginSee code: @oclif/plugin-plugins
rcli plugins unlink [PLUGIN]
Removes a plugin from the CLI.
USAGE
$ rcli plugins unlink [PLUGIN...] [-h] [-v]
ARGUMENTS
PLUGIN... plugin to uninstall
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Removes a plugin from the CLI.
ALIASES
$ rcli plugins unlink
$ rcli plugins remove
EXAMPLES
$ rcli plugins unlink mypluginrcli plugins update
Update installed plugins.
USAGE
$ rcli plugins update [-h] [-v]
FLAGS
-h, --help Show CLI help.
-v, --verbose
DESCRIPTION
Update installed plugins.See code: @oclif/plugin-plugins
