Fixed error with removal of global.Promise override

refs #12182

These were missed in the cleanup and were causing errors.
This commit is contained in:
Fabien O'Carroll 2020-11-05 10:52:11 +00:00
parent 82224f5626
commit 44b43a4755
2 changed files with 2 additions and 0 deletions

View File

@ -1,4 +1,5 @@
const _ = require('lodash');
const Promise = require('bluebird');
const moment = require('moment-timezone');
const errors = require('@tryghost/errors');
const {i18n} = require('../../lib/common');

View File

@ -1,4 +1,5 @@
const _ = require('lodash');
const Promise = require('bluebird');
const debug = require('ghost-ignition').debug('mega');
const url = require('url');
const moment = require('moment');