mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00: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 isNil = require('lodash/isNil');
|
||||||
const merge = require('lodash/merge');
|
const merge = require('lodash/merge');
|
||||||
const get = require('lodash/get');
|
const get = require('lodash/get');
|
||||||
const {errors, logging} = require('./');
|
const errors = require('@tryghost/errors');
|
||||||
|
const logging = require('../../../shared/logging');
|
||||||
|
|
||||||
class I18n {
|
class I18n {
|
||||||
constructor(locale) {
|
constructor(locale) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue