Now building scss within the content processor

This commit is contained in:
Jocelyn Badgley (Twipped)
2020-02-28 09:15:21 -08:00
parent 133cd48bbc
commit 6ca289017f
9 changed files with 116 additions and 257 deletions

View File

@@ -10,6 +10,7 @@ const evaluate = require('./evaluate');
const { resolve } = require('./resolve');
const favicon = require('./favicon');
const scss = require('./scss');
const svg = require('./svg');
exports.everything = function (prod = false) {
@@ -28,6 +29,7 @@ exports.everything = function (prod = false) {
// compile all tasks to be completed
const tasks = await Promise.all([
PublicFiles.tasks,
scss(prod),
svg(prod),
favicon(prod),
]);