From ef3b361c09c6b07ffb10f4e345638851ba232ea3 Mon Sep 17 00:00:00 2001 From: Michael Leanos Date: Sat, 15 Oct 2016 14:07:30 -0700 Subject: [PATCH] fix(config): Default config dangling comma (#1570) Removes the dangling comma from the default configuration db.promise setting. --- config/env/default.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/env/default.js b/config/env/default.js index 8d7a1630d5..4ae53fafaa 100644 --- a/config/env/default.js +++ b/config/env/default.js @@ -8,7 +8,7 @@ module.exports = { googleAnalyticsTrackingID: process.env.GOOGLE_ANALYTICS_TRACKING_ID || 'GOOGLE_ANALYTICS_TRACKING_ID' }, db: { - promise: global.Promise, + promise: global.Promise }, port: process.env.PORT || 3000, host: process.env.HOST || '0.0.0.0',