ionic-framework
Version:
The ionic-framework package comes with both Javascript and Sass frontend dependencies, located in the root of the package, and a Node API, located in `tooling/`.
15 lines (9 loc) • 298 B
JavaScript
var path = require('path'),
Generator = require('../../generator');
module.exports = PageGenerator;
function PageGenerator(options) {
Generator.call(this, options);
this.directory = 'pages';
this.jsClassName += 'Page';
}
PageGenerator.prototype = Object.create(Generator.prototype);