generator-ng2-pro
Version:
A yeoman generator to scaffold an Angular2 application
30 lines (21 loc) • 782 B
JavaScript
;
var Generator = require('yeoman-generator');
var chalk = require('chalk');
var yosay = require('yosay');
module.exports = Generator.extend({
writing: function () {
const interfacename= this.options.name || 'myInterface';
const name = interfacename +'.interface';
const classname = interfacename + 'Interface'
const titleCase = string => string.charAt(0).toUpperCase() + string.slice(1);
const lowerCase = string => string.charAt(0).toLowerCase() + string.slice(1);
var path = process.cwd();
this.fs.copyTpl(
this.templatePath('_interface.ts'),
this.destinationPath(`${path}/${name}.ts`),
{
interfacenameClass :titleCase(classname),
}
);
},
});