Skip to content

Commit

Permalink
return early if addon is included too early
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanley Stuart committed Nov 14, 2014
1 parent 53328e4 commit 0909769
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
module.exports = {
name: 'ember-cli-dotenv',
config: function(){
if (!this.app) {
return;
}
var path = require('path');
var fs = require('fs');
var dotenv = require('dotenv');
Expand Down

0 comments on commit 0909769

Please sign in to comment.