UNPKG

generator-angular-material-fullstack

Version:

Yeoman generator for creating MEAN stack applications, using MongoDB, Express, AngularJS, and Node

25 lines (20 loc) 844 B
'use strict'; var util = require('util'); var path = require('path'); var yeoman = require('yeoman-generator'); var angularUtils = require('./util.js'); var Generator = module.exports = function Generator() { yeoman.generators.NamedBase.apply(this, arguments); try { this.appname = require(path.join(process.cwd(), 'bower.json')).name; } catch (e) { this.appname = path.basename(process.cwd()); } this.appname = this._.slugify(this._.humanize(this.appname)); this.scriptAppName = this._.camelize(this.appname) + angularUtils.appName(this); this.cameledName = this._.camelize(this.name); this.classedName = this._.classify(this.name); this.filters = this.config.get('filters'); this.sourceRoot(path.join(__dirname, '/templates')); }; util.inherits(Generator, yeoman.generators.NamedBase);