UNPKG

simplr-gulp

Version:

Fully functional gulpfile.js implementation. Tailored for Single Page Application. Written in TypeScript.

13 lines (12 loc) 502 B
Object.defineProperty(exports, "__esModule", { value: true }); const watcher_task_base_1 = require("../../watcher-task-base"); const paths_1 = require("../../../paths/paths"); class WatchAssetsTask extends watcher_task_base_1.WatchTaskBase { constructor() { super(...arguments); this.TaskNamePrefix = "Build"; this.Name = "Assets"; this.Globs = paths_1.Paths.Builders.AllDirectories.InSource("assets"); } } exports.WatchAssetsTask = WatchAssetsTask;