UNPKG

takin

Version:

Front end engineering base toolchain and scaffold

17 lines 424 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * 用于设置阻止 runner.run 执行的插件 */ class StopRunPlugin { constructor() { this.name = 'TakinStopRunPlugin'; } apply(runner) { runner.hooks.shouldRun.tap(this.name, function () { return false; }); } } exports.default = StopRunPlugin; //# sourceMappingURL=StopRunPlugin.js.map