UNPKG

@zero-scripts/core

Version:

Framework for creating presets, configurations and extensions

17 lines 506 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.WorkSpace = void 0; const tapable_1 = require("tapable"); class WorkSpace { constructor(name) { this.name = name; this.tasks = new Map(); this.configBuilderInstances = new Map(); this.plugins = []; this.hooks = { beforeRun: new tapable_1.SyncHook(['beforeRun']) }; } } exports.WorkSpace = WorkSpace; //# sourceMappingURL=WorkSpace.js.map