Skip to content

Commit de389ba

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: openshift/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var exec = childProcess.exec;
99
var spawn = childProcess.spawn;
1010

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

1515
try {
@@ -21,7 +21,7 @@ var Generator = module.exports = function Generator() {
2121
this.filters = this.config.get('filters') || {};
2222
};
2323

24-
util.inherits(Generator, yeoman.generators.NamedBase);
24+
util.inherits(Generator, yeoman.NamedBase);
2525

2626
Generator.prototype.askForName = function askForName() {
2727
var done = this.async();

0 commit comments

Comments
 (0)