Files
2016-01-07 19:03:59 -06:00

13 lines
305 B
JavaScript

var path = require('path'),
Generator = require('../../generator');
module.exports = ComponentGenerator;
function ComponentGenerator(options) {
Generator.call(this, options);
this.directory = path.join('app', 'components');
}
ComponentGenerator.prototype = Object.create(Generator.prototype);