fix: Use module.exports instead of export default

This commit is contained in:
Blade Barringer
2016-03-04 13:29:51 -06:00
parent 4cd0428f0a
commit b97511db31
34 changed files with 53 additions and 53 deletions

View File

@@ -3,7 +3,7 @@
// it's yet to be decided whether to keep it or not
import domainMiddleware from 'domain-middleware';
export default function implementDomainMiddleware (server, mongoose) {
module.exports = function implementDomainMiddleware (server, mongoose) {
return domainMiddleware({
server: {
close () {
@@ -13,4 +13,4 @@ export default function implementDomainMiddleware (server, mongoose) {
},
killTimeout: 10000,
});
}
};