Fixed import paths for errors and logging modules

no issue

- errors is now `@tryghost/errors`
- logging moved location to `core/shared/logging`
This commit is contained in:
Daniel Lockyer 2020-06-12 09:08:44 +01:00
parent 7904c303a7
commit 2229fd4d6c

View File

@ -8,7 +8,8 @@ const isEqual = require('lodash/isEqual');
const isNil = require('lodash/isNil');
const merge = require('lodash/merge');
const get = require('lodash/get');
const {errors, logging} = require('./');
const errors = require('@tryghost/errors');
const logging = require('../../../shared/logging');
class I18n {
constructor(locale) {