mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
Moved lib/thing/index.js files to lib/thing.js
no issue - cleans up directory structure and increases naming consistency
This commit is contained in:
parent
43434e1f7d
commit
1ffdef98c3
2 changed files with 4 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
||||||
const common = require('../common');
|
const common = require('./common');
|
||||||
const config = require('../../config');
|
const config = require('../config');
|
||||||
|
|
||||||
let cardFactory, cards, mobiledocHtmlRenderer;
|
let cardFactory, cards, mobiledocHtmlRenderer;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
const UrlUtils = require('@tryghost/url-utils');
|
const UrlUtils = require('@tryghost/url-utils');
|
||||||
const config = require('../../config');
|
const config = require('../config');
|
||||||
const mobiledoc = require('../mobiledoc');
|
const mobiledoc = require('./mobiledoc');
|
||||||
|
|
||||||
const urlUtils = new UrlUtils({
|
const urlUtils = new UrlUtils({
|
||||||
url: config.get('url'),
|
url: config.get('url'),
|
Loading…
Add table
Reference in a new issue