Skip to content

Commit

Permalink
Merge pull request #381 from makepanic/patch-1
Browse files Browse the repository at this point in the history
fix: apply included function with arguments instead of app
  • Loading branch information
Ben Demboski authored Jan 2, 2019
2 parents a347809 + 07d5989 commit a5eddcc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = {
name: 'ember-electron',

included(app) {
this._super.included(app);
this._super.included.apply(this, arguments);

if (!process.env.EMBER_CLI_ELECTRON) {
return;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@
"file-url": "^2.0.2",
"fs-extra": "^2.0.0",
"globby": "^6.0.0",
"loader.js": "^4.2.3",
"lodash": "^4.15.0",
"quick-temp": "^0.1.5",
"rimraf": "^2.6.1",
Expand Down Expand Up @@ -112,6 +111,7 @@
"eslint-plugin-ember": "^5.0.0",
"eslint-plugin-ember-suave": "^1.0.0",
"eslint-plugin-node": "^6.0.1",
"loader.js": "^4.2.3",
"mocha": "^3.5.3",
"mock-spawn": "^0.2.6",
"mockery": "^1.4.0",
Expand Down

0 comments on commit a5eddcc

Please sign in to comment.