Generator for aliased generator functionality.
With a simple JSON config file you can save yourself from a lot of typing and expose all needed sub generators for your generator in a simple way:
yo react-webpack-redux:action addItem
# vs
yo ho action addItem
See Examples below for more details.
Install the generator globally:
sudo npm install generator-ho -g
To use ho with your project just add a ho.json file describing your aliases:
{
"command": {
"generator": "some-generator",
"subgen": "sub",
"parameters": [ "name"]
}
}
subgen and parameters are optional.
To list commands that may be invoked via ho, just run:
yo ho --help
You can now invoke those aliased commands by running:
yo ho command arg1 arg2
If ho.json looks like this:
{
"action": {
"generator": "react-webpack-redux",
"subgen": "action",
"parameters": [ "name" ]
},
"reducer": {
"generator": "react-webpack-redux",
"subgen": "reducer",
"parameters": [ "name" ]
},
"component": {
"generator": "react-webpack",
"subgen": "component",
"parameters": [ "name" ]
}
}
it will produce a help like this:
Usage:
yo ho:app [options] <command>
Options:
-h, --help # Print the generator's options and usage
--skip-cache # Do not remember prompt answers Default: false
--skip-install # Do not automatically install dependencies Default: false
Arguments:
command # Available commands to invoke:
+ action <name> (yo react-webpack-redux:action <name>)
+ reducer <name> (yo react-webpack-redux:reducer <name>)
+ component <name> (yo react-webpack:component <name>)
Type: String Required: true
and will allow for the following commands to be executed:
yo ho action addItem
yo ho reducer item
yo ho component ItemList
MIT License
Copyright (c) 2015 Chris Landa
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.