Skip to content

Commit

Permalink
fix bug from yeoman update
Browse files Browse the repository at this point in the history
  • Loading branch information
rip-tyang committed Feb 17, 2017
1 parent dbe2158 commit dec8a81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generators/app/index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
const path = require('path');
const yeoman = require('yeoman-generator');
const Generator = require('yeoman-generator');
const askName = require('inquirer-npm-name');
const chalk = require('chalk');
const yosay = require('yosay');
const mkdirp = require('mkdirp');

class GeneratorZero extends yeoman.Base {
class GeneratorZero extends Generator {
initializing() {
this.props = {};
}
Expand Down

0 comments on commit dec8a81

Please sign in to comment.