generator-yolo
Version:
Awesome static site generator based on Webpack!
24 lines (21 loc) • 521 B
JavaScript
;
const Generator = require('yeoman-generator');
module.exports = class extends Generator {
writing() {
let pages = this.config.get('pages');
if (pages === undefined) {
pages = [];
pages.push(this.arguments[0]);
} else {
pages.push(this.arguments[0]);
}
this.config.set('pages', pages);
this.fs.copyTpl(
this.templatePath('page.pug'),
this.destinationPath(`src/${this.arguments}/index.pug`),
{
name: this.arguments
}
);
}
};