mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-28 21:33:24 +03:00
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:
parent
7904c303a7
commit
2229fd4d6c
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user