Skip to content

Commit

Permalink
remove index.js import of version-checker
Browse files Browse the repository at this point in the history
  • Loading branch information
snewcomer committed Apr 17, 2017
1 parent 450a142 commit 67bf6e9
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,23 +1,6 @@
/* jshint node: true */
'use strict';

var checker = require('ember-cli-version-checker');

module.exports = {
name: 'ember-infinity',

init: function() {
if (this._super.init) {
this._super.init.apply(this, arguments);
}
checker.assertAbove(this, '0.2.0');
},

included: function(app) {
this.addons.forEach(function(addon){
if (addon.name === "ember-version-is") {
addon.included.apply(addon, [app]);
}
});
}
};

0 comments on commit 67bf6e9

Please sign in to comment.