Skip to content

Commit 6768c00

Browse files
author
Robert Jackson
authored
Merge pull request #464 from ember-cli/change-version-checker-usage
Remove usage of legacy `checker.forEmber` API.
2 parents 7f3bdcd + 58adf9c commit 6768c00

File tree

1 file changed

+1
-1
lines changed
  • tests/dummy/lib/module-name-inliner

1 file changed

+1
-1
lines changed

tests/dummy/lib/module-name-inliner/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module.exports = {
1212
setupPreprocessorRegistry(type, registry) {
1313
// can only add the plugin with this style on newer Ember versions
1414
let checker = new VersionChecker(this.project);
15-
if (checker.forEmber().gte('3.1.0')) {
15+
if (checker.for('ember-source').gte('3.1.0')) {
1616
registry.add('htmlbars-ast-plugin', this.buildPlugin());
1717
}
1818

0 commit comments

Comments
 (0)