mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00
13 lines
285 B
JavaScript
13 lines
285 B
JavaScript
|
|
var path = require('path'),
|
|
Generator = require('../../generator');
|
|
|
|
module.exports = PageGenerator;
|
|
|
|
function PageGenerator(options) {
|
|
Generator.call(this, options);
|
|
this.directory = path.join('app', 'pages');
|
|
}
|
|
|
|
PageGenerator.prototype = Object.create(Generator.prototype);
|