batch-cluster
Advanced tools
Comparing version 10.0.0 to 10.0.1
@@ -21,2 +21,6 @@ # Changelog | ||
## v10.0.1 | ||
- 📦 Export `BatchProcess` interface | ||
## v10.0.0 | ||
@@ -23,0 +27,0 @@ |
@@ -10,2 +10,3 @@ /// <reference types="node" /> | ||
export { BatchClusterOptions } from "./BatchClusterOptions"; | ||
export { BatchProcess } from "./BatchProcess"; | ||
export { Deferred } from "./Deferred"; | ||
@@ -12,0 +13,0 @@ export * from "./Logger"; |
@@ -28,3 +28,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.BatchCluster = exports.Task = exports.pids = exports.pidExists = exports.kill = exports.SimpleParser = exports.Deferred = exports.BatchClusterOptions = void 0; | ||
exports.BatchCluster = exports.Task = exports.pids = exports.pidExists = exports.kill = exports.SimpleParser = exports.Deferred = exports.BatchProcess = exports.BatchClusterOptions = void 0; | ||
const events_1 = __importDefault(require("events")); | ||
@@ -43,2 +43,4 @@ const process_1 = __importDefault(require("process")); | ||
Object.defineProperty(exports, "BatchClusterOptions", { enumerable: true, get: function () { return BatchClusterOptions_2.BatchClusterOptions; } }); | ||
var BatchProcess_2 = require("./BatchProcess"); | ||
Object.defineProperty(exports, "BatchProcess", { enumerable: true, get: function () { return BatchProcess_2.BatchProcess; } }); | ||
var Deferred_2 = require("./Deferred"); | ||
@@ -45,0 +47,0 @@ Object.defineProperty(exports, "Deferred", { enumerable: true, get: function () { return Deferred_2.Deferred; } }); |
{ | ||
"name": "batch-cluster", | ||
"version": "10.0.0", | ||
"version": "10.0.1", | ||
"description": "Manage a cluster of child processes", | ||
@@ -5,0 +5,0 @@ "main": "dist/BatchCluster.js", |
Sorry, the diff of this file is not supported yet
193637
2752