0.0.2 • Published 8 years ago

pryo v0.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

pryo Build Status

Write yeoman generators in project instead of another package.

Usage

Folder structure

├───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

Use other installed generators

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.

Command line options

pryo use yargs to parse command line optstrings, read the document to learn more

Example

Read example for more detail.