Write yeoman generators in project instead of another package.
├───package.json
├───src
└───generators/
├───app/
│ └───index.js
└───router/
└───index.js
Then use `npm bin`/pryo app
to execute generator generators/app/index.js
You can custom generators by add generator-folder
field to package.json
Simply use pryo
instead of yo
.
For example, I installed generator-angular, then you can execute `npm bin`/pryo angular:controller user
to generate controller files.
pryo use yargs to parse command line optstrings, read the document to learn more
Read example for more detail.