0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-25 02:31:59 -05:00

Removed bluebird import from migration utils

no-issue

The bluebird library is unecessary in this module, as all uses of it
were wrapped in `async` functions which will return a native Promise
rather than a bluebird one.

refs https://ghost.slack.com/archives/C02G9E68C/p1629822160273500
This commit is contained in:
Fabien O'Carroll 2021-08-25 23:28:40 +02:00
parent b2aa2dd7e1
commit 611f696149

View file

@ -3,7 +3,6 @@ const logging = require('@tryghost/logging');
const errors = require('@tryghost/errors');
const tpl = require('@tryghost/tpl');
const commands = require('../schema').commands;
const Promise = require('bluebird');
const MIGRATION_USER = 1;