--help
to get usage help--version
to print version number and exitcreate component
--container
/-c
creates a container file for the component--redux
/-r
connects the component to the Redux store with the connect
HOCname
is the name of the component to be createdcreate route
--container
/-c
creates a container file for the route--redux
/-r
connects the route to the Redux store with the connect
HOCname
is the name of the route to be createdcreate store
--dispatcher-type
/-d
determines what type of dispatcher file will be created.no
(default) - does not create a dispatcherregular
- creates a simple helper class for dispatching actionsquery
- creates a dispatcher that extends QueryDispatcher
name
is the name of the store to be createdcreate query
name
is the name of the query to be createddeploy
extension install
--no-enable
will install the extension without enabling it--local
/-l
: use a local module from packages/<name>
--use
/-u
: use a local module from the specified <path>
--version
/-v
specifies the extension version to usesave-dev
/-D
: install the package as a devDependencyname
is the name of the extension to installextension create
--no-enable
will create and install the extension without enabling itname
specifies the name of the new extensionoverride component
--styles
/-S
:keep
: don't override stylesextend
: adjust existing stylesoverride
: completely replace existing styles--source-module
/-s
: Path to the module to override the component from--target-module
/-t
: Path to the module to generate the component in name
is the name of the component to be overriddenoverride route
--styles
/-S
:keep
: don't override stylesextend
: adjust existing stylesoverride
: completely replace existing styles--source-module
/-s
: Path to the module to override the route from--target-module
/-t
: Path to the module to generate the route in name
is the name of the route to be overriddenoverride store
--source-module
/-s
: Path to the module to override the store from--target-module
/-t
: Path to the module to generate the store in name
is the name of the store to be overriddenoverride query
--source-module
/-s
: Path to the module to override the query from--target-module
/-t
: Path to the module to generate the query in name
is the name of the query to be overridden