UNPKG

generator-markup-source

Version:
14 lines 304 B
'use strict'; const Generator = require('yeoman-generator'); module.exports = class extends Generator { constructor(args, opts) { super(args, opts); this.log('Initializing...'); } start() { this.fs.copyTpl( this.templatePath('**/*'), this.destinationRoot() ); } };