Switch to @tryghost/debug, remove ghost-ignition

no issue
The only pieces of Ghost-Ignition used in Ghost were debug and
logging. Both of these modules have been superceded by the Framework
monorepo, and all usages of Ignition have now been removed, replaced
with @tryghost/debug and @tryghost/logging.
This commit is contained in:
Sam Lord 2021-06-15 17:01:22 +01:00 committed by naz
parent ddeb980a9f
commit 99bf0b29e2

View File

@ -3,7 +3,7 @@ const uuid = require('uuid');
const ObjectId = require('bson-objectid');
const moment = require('moment-timezone');
const errors = require('@tryghost/errors');
const debug = require('ghost-ignition').debug('importer:members');
const debug = require('@tryghost/debug')('importer:members');
const membersService = require('../index');
const models = require('../../../models');
const i18n = require('../../../../shared/i18n');