simplr-gulp
Version:
Fully functional gulpfile.js implementation. Tailored for Single Page Application. Written in TypeScript.
16 lines (15 loc) • 579 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const task_base_1 = require("../task-base");
const watcher_tasks_handler_1 = require("../../watchers/watcher-tasks-handler");
class WatchTask extends task_base_1.TaskBase {
constructor() {
super(...arguments);
this.Name = "Watch";
this.Description = "Watch source files and start tasks";
this.TaskFunction = (production, done) => {
new watcher_tasks_handler_1.WatcherTasksHandler();
done();
};
}
}
exports.WatchTask = WatchTask;