mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05: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
1 changed files with 2 additions and 1 deletions
|
@ -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 a new issue