don't use 'exports', only 'module.exports'

closes #513
This commit is contained in:
Tejas Manohar 2015-10-11 19:31:39 -05:00 committed by Jonathan Ong
parent af0ae08dc4
commit 96c1e0998f
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ var app = Application.prototype;
* Expose `Application`.
*/
exports = module.exports = Application;
module.exports = Application;
/**
* Initialize a new `Application`.