Skip to content

Commit

Permalink
Addressing feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmit committed Oct 25, 2017
1 parent cb2a75f commit 1f5c86c
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 @@ -18,7 +18,7 @@ module.exports = {
* and needed to be moved into `init`.
*/
init() {
this._super && this._super.apply(this, arguments);
this._super.init && this._super.init.apply(this, arguments);
let root = this.project.root;
let configFactory = path.join(root, 'dotenv.js');
let options = {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-cli-dotenv",
"version": "2.0.0",
"version": "1.2.0",
"description": "Expose .env variables in Ember applications",
"directories": {
"doc": "doc",
Expand Down

0 comments on commit 1f5c86c

Please sign in to comment.