Skip to content

Commit 72070db

Browse files
committed
refactor(gen:heroku): remove deprecated generators.Base
1 parent cca1127 commit 72070db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: heroku/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var path = require('path');
77
var s = require('underscore.string');
88

99
var Generator = module.exports = function Generator() {
10-
yeoman.generators.Base.apply(this, arguments);
10+
yeoman.Base.apply(this, arguments);
1111
this.sourceRoot(path.join(__dirname, './templates'));
1212

1313
try {
@@ -19,7 +19,7 @@ var Generator = module.exports = function Generator() {
1919
this.filters = this.config.get('filters') || {};
2020
};
2121

22-
util.inherits(Generator, yeoman.generators.NamedBase);
22+
util.inherits(Generator, yeoman.NamedBase);
2323

2424
Generator.prototype.askForName = function askForName() {
2525
var done = this.async();

0 commit comments

Comments
 (0)