simplr-gulp
Version:
Fully functional gulpfile.js implementation. Tailored for Single Page Application. Written in TypeScript.
13 lines (12 loc) • 495 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const watcher_task_base_1 = require("../../watcher-task-base");
const paths_1 = require("../../../paths/paths");
class WatchStylesTask extends watcher_task_base_1.WatchTaskBase {
constructor() {
super(...arguments);
this.Name = "Styles";
this.TaskNamePrefix = "Build";
this.Globs = paths_1.Paths.Builders.AllFiles.InSource(".scss");
}
}
exports.WatchStylesTask = WatchStylesTask;