0.0.2 • Published 3 years ago

@andresmorelos/dev-cli v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

dev-cli

The hackable Developer CLI

oclif Version CircleCI Codecov Downloads/week License

Usage

$ npm install -g @andresmorelos/dev-cli
$ dev-cli COMMAND
running command...
$ dev-cli (-v|--version|version)
@andresmorelos/dev-cli/0.0.1 darwin-x64 node-v12.16.2
$ dev-cli --help [COMMAND]
USAGE
  $ dev-cli COMMAND
...

Commands

dev-cli autocomplete [SHELL]

display autocomplete installation instructions

USAGE
  $ dev-cli autocomplete [SHELL]

ARGUMENTS
  SHELL  shell type

OPTIONS
  -r, --refresh-cache  Refresh cache (ignores displaying instructions)

EXAMPLES
  $ dev-cli autocomplete
  $ dev-cli autocomplete bash
  $ dev-cli autocomplete zsh
  $ dev-cli autocomplete --refresh-cache

See code: @oclif/plugin-autocomplete

dev-cli aws:create

Create an Amazon Credential Profile in your credential file

USAGE
  $ dev-cli aws:create

EXAMPLE
  $ dev-cli aws:create

See code: lib/commands/aws/create.js

dev-cli aws:default

Make an existing profile the default

USAGE
  $ dev-cli aws:default

EXAMPLES
  $ dev-cli aws:default personal-account
  $ dev-cli aws:default

See code: lib/commands/aws/default.js

dev-cli aws:delete

Delete an existing profile

USAGE
  $ dev-cli aws:delete

EXAMPLES
  $ dev-cli aws:delete personal-account
  $ dev-cli aws:delete

See code: lib/commands/aws/delete.js

dev-cli aws:list

USAGE
  $ dev-cli aws:list

See code: lib/commands/aws/list.js

dev-cli help [COMMAND]

display help for dev-cli

USAGE
  $ dev-cli help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

dev-cli plugins

list installed plugins

USAGE
  $ dev-cli plugins

OPTIONS
  --core  show core plugins

EXAMPLE
  $ dev-cli plugins

See code: @oclif/plugin-plugins

dev-cli plugins:install PLUGIN...

installs a plugin into the CLI

USAGE
  $ dev-cli plugins:install PLUGIN...

ARGUMENTS
  PLUGIN  plugin to install

OPTIONS
  -f, --force    yarn install with force flag
  -h, --help     show CLI help
  -v, --verbose

DESCRIPTION
  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
  $ dev-cli plugins:add

EXAMPLES
  $ dev-cli plugins:install myplugin 
  $ dev-cli plugins:install https://github.com/someuser/someplugin
  $ dev-cli plugins:install someuser/someplugin

See code: @oclif/plugin-plugins

dev-cli plugins:link PLUGIN

links a plugin into the CLI for development

USAGE
  $ dev-cli plugins:link PLUGIN

ARGUMENTS
  PATH  [default: .] path to plugin

OPTIONS
  -h, --help     show CLI help
  -v, --verbose

DESCRIPTION
  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.

EXAMPLE
  $ dev-cli plugins:link myplugin

See code: @oclif/plugin-plugins

dev-cli plugins:uninstall PLUGIN...

removes a plugin from the CLI

USAGE
  $ dev-cli plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

OPTIONS
  -h, --help     show CLI help
  -v, --verbose

ALIASES
  $ dev-cli plugins:unlink
  $ dev-cli plugins:remove

See code: @oclif/plugin-plugins

dev-cli plugins:update

update installed plugins

USAGE
  $ dev-cli plugins:update

OPTIONS
  -h, --help     show CLI help
  -v, --verbose

See code: @oclif/plugin-plugins