mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-15 03:01:37 -05:00
Moved theme config to new theme engine service
refs: bf0823c9a2
- continuing the work of splitting up the theme service into logical components
This commit is contained in:
parent
ef4e4e8cc0
commit
c687df21e1
4 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@
|
|||
const join = require('path').join;
|
||||
|
||||
const _ = require('lodash');
|
||||
const themeConfig = require('./config');
|
||||
const themeConfig = require('../theme-engine/config');
|
||||
const themeEngines = require('./engines');
|
||||
const config = require('../../../shared/config');
|
||||
const engine = require('../theme-engine/engine');
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
const should = require('should');
|
||||
const sinon = require('sinon');
|
||||
const themeConfig = require('../../../../core/frontend/services/themes/config');
|
||||
const themeConfig = require('../../../../core/frontend/services/theme-engine/config');
|
||||
|
||||
describe('Themes', function () {
|
||||
afterEach(function () {
|
Loading…
Add table
Reference in a new issue