mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 04:14:21 +08:00
13 lines
287 B
JavaScript
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);
|
|
|