0
Fork 0
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:
Hannah Wolfe 2021-04-21 14:15:50 +01:00
parent ef4e4e8cc0
commit c687df21e1
4 changed files with 2 additions and 2 deletions

View file

@ -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');

View file

@ -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 () {