0.0.2 • Published 4 years ago

aodev v0.0.2

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

aodev

aodev base cli

oclif Version Downloads/week License

Usage

$ npm install -g @rieger-alec/aodev
$ aodev COMMAND
running command...
$ aodev (-v|--version|version)
@rieger-alec/aodev/0.0.2 darwin-x64 node-v14.8.0
$ aodev --help [COMMAND]
USAGE
  $ aodev COMMAND
...

Commands

aodev help [COMMAND]

display help for aodev

USAGE
  $ aodev help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

aodev install [FILE]

describe the command here

USAGE
  $ aodev install [FILE]

OPTIONS
  -f, --force
  -h, --help       show CLI help
  -n, --name=name  name to print

See code: src/commands/install.ts

aodev plugins

list installed plugins

USAGE
  $ aodev plugins

OPTIONS
  --core  show core plugins

EXAMPLE
  $ aodev plugins

See code: @oclif/plugin-plugins

aodev plugins:install PLUGIN...

installs a plugin into the CLI

USAGE
  $ aodev 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
  $ aodev plugins:add

EXAMPLES
  $ aodev plugins:install myplugin 
  $ aodev plugins:install https://github.com/someuser/someplugin
  $ aodev plugins:install someuser/someplugin

See code: @oclif/plugin-plugins

aodev plugins:link PLUGIN

links a plugin into the CLI for development

USAGE
  $ aodev 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
  $ aodev plugins:link myplugin

See code: @oclif/plugin-plugins

aodev plugins:uninstall PLUGIN...

removes a plugin from the CLI

USAGE
  $ aodev plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

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

ALIASES
  $ aodev plugins:unlink
  $ aodev plugins:remove

See code: @oclif/plugin-plugins

aodev plugins:update

update installed plugins

USAGE
  $ aodev plugins:update

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

See code: @oclif/plugin-plugins