/yeoman-conductor

A node module that let's you run a yeoman generator from another one.

Primary LanguageJavaScriptMIT LicenseMIT

yeoman-conductor Build Status Dependency Status

A module that let's you run a yeoman generator from another one.

Getting Started

Install the module with: npm install yeoman-conductor

var conductor = require('yeoman-conductor');

myGenerator.prototype.runOldGenerator = function() {
    var cb = this.async();
    var generator = conductor.run('generator-name', cb);
}

License

Copyright (c) 2013 Daniel Chatfield. Licensed under the MIT license.