We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
generators.Base
1 parent cca1127 commit 72070dbCopy full SHA for 72070db
heroku/index.js
@@ -7,7 +7,7 @@ var path = require('path');
7
var s = require('underscore.string');
8
9
var Generator = module.exports = function Generator() {
10
- yeoman.generators.Base.apply(this, arguments);
+ yeoman.Base.apply(this, arguments);
11
this.sourceRoot(path.join(__dirname, './templates'));
12
13
try {
@@ -19,7 +19,7 @@ var Generator = module.exports = function Generator() {
19
this.filters = this.config.get('filters') || {};
20
};
21
22
-util.inherits(Generator, yeoman.generators.NamedBase);
+util.inherits(Generator, yeoman.NamedBase);
23
24
Generator.prototype.askForName = function askForName() {
25
var done = this.async();
0 commit comments