Files
2016-01-07 19:04:01 -06:00

13 lines
287 B
JavaScript

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