cli tool for the ngx-next platform


Keywords
oclif
License
MIT
Install
npm install @ngx-next/cli@0.8.8

Documentation

cli

cli tool for the ngx-next platform

oclif Version CircleCI Downloads/week License

Usage

$ npm install -g @ngx-next/cli
$ ngx COMMAND
running command...
$ ngx (-v|--version|version)
@ngx-next/cli/0.0.0 darwin-x64 node-v10.13.0
$ ngx --help [COMMAND]
USAGE
  $ ngx COMMAND
...

Commands

ngx autocomplete [SHELL]

display autocomplete installation instructions

USAGE
  $ ngx autocomplete [SHELL]

ARGUMENTS
  SHELL  shell type

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

EXAMPLES
  $ ngx autocomplete
  $ ngx autocomplete bash
  $ ngx autocomplete zsh
  $ ngx autocomplete --refresh-cache

See code: @oclif/plugin-autocomplete

ngx build:apps

build all apps in the current ngx-next workspace

USAGE
  $ ngx build:apps

EXAMPLE
  $ ngx build:apps

See code: lib/commands/build/apps.js

ngx build:libs

build all libs in the current ngx-next workspace

USAGE
  $ ngx build:libs

EXAMPLE
  $ ngx build:libs

See code: lib/commands/build/libs.js

ngx commands

list all the commands

USAGE
  $ ngx commands

OPTIONS
  -h, --help  show CLI help
  -j, --json  output in json format
  --hidden    also show hidden commands

See code: @oclif/plugin-commands

ngx help [COMMAND]

display help for ngx

USAGE
  $ ngx help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

ngx plugins

list installed plugins

USAGE
  $ ngx plugins

OPTIONS
  --core  show core plugins

EXAMPLE
  $ ngx plugins

See code: @oclif/plugin-plugins

ngx plugins:install PLUGIN...

installs a plugin into the CLI

USAGE
  $ ngx plugins:install PLUGIN...

ARGUMENTS
  PLUGIN  plugin to install

OPTIONS
  -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
  $ ngx plugins:add

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

See code: @oclif/plugin-plugins

ngx plugins:link PLUGIN

links a plugin into the CLI for development

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

See code: @oclif/plugin-plugins

ngx plugins:uninstall PLUGIN...

removes a plugin from the CLI

USAGE
  $ ngx plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

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

ALIASES
  $ ngx plugins:unlink
  $ ngx plugins:remove

See code: @oclif/plugin-plugins

ngx plugins:update

update installed plugins

USAGE
  $ ngx plugins:update

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

See code: @oclif/plugin-plugins

ngx update [CHANNEL]

update the ngx CLI

USAGE
  $ ngx update [CHANNEL]

See code: @oclif/plugin-update