You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
308 B
JavaScript
14 lines
308 B
JavaScript
6 years ago
|
"use strict";
|
||
|
|
||
|
const buildThing = require("build-thing");
|
||
|
|
||
|
let scssTask = buildThing.core.defineTask(() => {
|
||
|
return buildThing.core.pipeline([
|
||
|
buildThing.core.watch("src/scss/**/*.scss"),
|
||
|
buildThing.scssTransform(),
|
||
|
buildThing.core.saveToDirectory("public/css")
|
||
|
]);
|
||
|
});
|
||
|
|
||
|
buildThing.runner(scssTask);
|