Skip to content

Commit

Permalink
fix: Use public API to diverge add-on name from the es6 module name t…
Browse files Browse the repository at this point in the history
…he ember app sees.
  • Loading branch information
stefanpenner committed Dec 3, 2018
1 parent 45b7b49 commit fdc78d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ cache:
yarn: true
env:
global:
- EMBER_CLI_IGNORE_ADDON_NAME_MISMATCH=true
# See https://git.io/vdao3 for details.
- JOBS=1

Expand Down
5 changes: 4 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ let Funnel = require('broccoli-funnel');
let BroccoliDebug = require('broccoli-debug');

module.exports = {
name: 'lodash',
name: 'ember-lodash',
moduleName() {
return 'lodash';
},

init() {
this._super.init && this._super.init.apply(this, arguments);
Expand Down

0 comments on commit fdc78d8

Please sign in to comment.