@modern-js/plugin 0.0.0-next-20221215040311 → 0.0.0-next-20221215054031
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/dist/js/node/farrow-pipeline/context.js +3 -7
- package/dist/js/node/farrow-pipeline/counter.js +3 -7
- package/dist/js/node/farrow-pipeline/index.js +3 -3
- package/dist/js/node/farrow-pipeline/pipeline.js +19 -24
- package/dist/js/node/index.js +6 -6
- package/dist/js/node/manager/async.js +26 -28
- package/dist/js/node/manager/index.js +5 -5
- package/dist/js/node/manager/shared.js +3 -11
- package/dist/js/node/manager/sync.js +22 -28
- package/dist/js/node/manager/types.js +0 -15
- package/dist/js/node/utils/pluginDagSort.js +3 -7
- package/dist/js/node/waterfall/async.js +27 -31
- package/dist/js/node/waterfall/index.js +4 -4
- package/dist/js/node/waterfall/sync.js +22 -26
- package/dist/js/node/workflow/async.js +26 -29
- package/dist/js/node/workflow/index.js +5 -5
- package/dist/js/node/workflow/parallel.js +26 -29
- package/dist/js/node/workflow/sync.js +22 -25
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -15,11 +15,11 @@ var __copyProps = (to, from, except, desc) => {
|
|
15
15
|
return to;
|
16
16
|
};
|
17
17
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
18
|
-
var
|
19
|
-
__export(
|
18
|
+
var stdin_exports = {};
|
19
|
+
__export(stdin_exports, {
|
20
20
|
createContext: () => createContext
|
21
21
|
});
|
22
|
-
module.exports = __toCommonJS(
|
22
|
+
module.exports = __toCommonJS(stdin_exports);
|
23
23
|
const createContext = (value) => {
|
24
24
|
let currentValue;
|
25
25
|
const create = (value2) => {
|
@@ -46,7 +46,3 @@ const createContext = (value) => {
|
|
46
46
|
};
|
47
47
|
return create(value);
|
48
48
|
};
|
49
|
-
// Annotate the CommonJS export names for ESM import in node:
|
50
|
-
0 && (module.exports = {
|
51
|
-
createContext
|
52
|
-
});
|
@@ -15,11 +15,11 @@ var __copyProps = (to, from, except, desc) => {
|
|
15
15
|
return to;
|
16
16
|
};
|
17
17
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
18
|
-
var
|
19
|
-
__export(
|
18
|
+
var stdin_exports = {};
|
19
|
+
__export(stdin_exports, {
|
20
20
|
createCounter: () => createCounter
|
21
21
|
});
|
22
|
-
module.exports = __toCommonJS(
|
22
|
+
module.exports = __toCommonJS(stdin_exports);
|
23
23
|
const createCounter = (callback) => {
|
24
24
|
const dispatch = (index, input) => {
|
25
25
|
const next = (nextInput = input) => dispatch(index + 1, nextInput);
|
@@ -31,7 +31,3 @@ const createCounter = (callback) => {
|
|
31
31
|
dispatch
|
32
32
|
};
|
33
33
|
};
|
34
|
-
// Annotate the CommonJS export names for ESM import in node:
|
35
|
-
0 && (module.exports = {
|
36
|
-
createCounter
|
37
|
-
});
|
@@ -12,6 +12,6 @@ var __copyProps = (to, from, except, desc) => {
|
|
12
12
|
};
|
13
13
|
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
14
14
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
15
|
-
var
|
16
|
-
module.exports = __toCommonJS(
|
17
|
-
__reExport(
|
15
|
+
var stdin_exports = {};
|
16
|
+
module.exports = __toCommonJS(stdin_exports);
|
17
|
+
__reExport(stdin_exports, require("./pipeline"), module.exports);
|
@@ -1,21 +1,7 @@
|
|
1
1
|
var __defProp = Object.defineProperty;
|
2
2
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
3
3
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
4
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
5
4
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
6
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
7
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
8
|
-
var __spreadValues = (a, b) => {
|
9
|
-
for (var prop in b || (b = {}))
|
10
|
-
if (__hasOwnProp.call(b, prop))
|
11
|
-
__defNormalProp(a, prop, b[prop]);
|
12
|
-
if (__getOwnPropSymbols)
|
13
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
14
|
-
if (__propIsEnum.call(b, prop))
|
15
|
-
__defNormalProp(a, prop, b[prop]);
|
16
|
-
}
|
17
|
-
return a;
|
18
|
-
};
|
19
5
|
var __export = (target, all) => {
|
20
6
|
for (var name in all)
|
21
7
|
__defProp(target, name, { get: all[name], enumerable: true });
|
@@ -29,16 +15,32 @@ var __copyProps = (to, from, except, desc) => {
|
|
29
15
|
return to;
|
30
16
|
};
|
31
17
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
32
|
-
var
|
33
|
-
__export(
|
18
|
+
var stdin_exports = {};
|
19
|
+
__export(stdin_exports, {
|
34
20
|
createAsyncPipeline: () => createAsyncPipeline,
|
35
21
|
createContext: () => import_context.createContext,
|
36
22
|
createPipeline: () => createPipeline,
|
37
23
|
isPipeline: () => isPipeline
|
38
24
|
});
|
39
|
-
module.exports = __toCommonJS(
|
25
|
+
module.exports = __toCommonJS(stdin_exports);
|
40
26
|
var import_context = require("./context");
|
41
27
|
var import_counter = require("./counter");
|
28
|
+
var __defProp2 = Object.defineProperty;
|
29
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
30
|
+
var __hasOwnProp2 = Object.prototype.hasOwnProperty;
|
31
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
32
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
33
|
+
var __spreadValues = (a, b) => {
|
34
|
+
for (var prop in b || (b = {}))
|
35
|
+
if (__hasOwnProp2.call(b, prop))
|
36
|
+
__defNormalProp(a, prop, b[prop]);
|
37
|
+
if (__getOwnPropSymbols)
|
38
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
39
|
+
if (__propIsEnum.call(b, prop))
|
40
|
+
__defNormalProp(a, prop, b[prop]);
|
41
|
+
}
|
42
|
+
return a;
|
43
|
+
};
|
42
44
|
const isPipeline = (input) => Boolean(input == null ? void 0 : input[PipelineSymbol]);
|
43
45
|
const PipelineSymbol = Symbol.for("MODERN_PIPELINE");
|
44
46
|
const getMiddleware = (input) => {
|
@@ -91,10 +93,3 @@ const createAsyncPipeline = () => {
|
|
91
93
|
const pipeline = createPipeline();
|
92
94
|
return __spreadValues({}, pipeline);
|
93
95
|
};
|
94
|
-
// Annotate the CommonJS export names for ESM import in node:
|
95
|
-
0 && (module.exports = {
|
96
|
-
createAsyncPipeline,
|
97
|
-
createContext,
|
98
|
-
createPipeline,
|
99
|
-
isPipeline
|
100
|
-
});
|
package/dist/js/node/index.js
CHANGED
@@ -12,9 +12,9 @@ var __copyProps = (to, from, except, desc) => {
|
|
12
12
|
};
|
13
13
|
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
14
14
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
15
|
-
var
|
16
|
-
module.exports = __toCommonJS(
|
17
|
-
__reExport(
|
18
|
-
__reExport(
|
19
|
-
__reExport(
|
20
|
-
__reExport(
|
15
|
+
var stdin_exports = {};
|
16
|
+
module.exports = __toCommonJS(stdin_exports);
|
17
|
+
__reExport(stdin_exports, require("./farrow-pipeline"), module.exports);
|
18
|
+
__reExport(stdin_exports, require("./waterfall"), module.exports);
|
19
|
+
__reExport(stdin_exports, require("./workflow"), module.exports);
|
20
|
+
__reExport(stdin_exports, require("./manager"), module.exports);
|
@@ -1,24 +1,7 @@
|
|
1
1
|
var __defProp = Object.defineProperty;
|
2
|
-
var __defProps = Object.defineProperties;
|
3
2
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
4
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
5
3
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
6
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
7
4
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
8
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
9
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
10
|
-
var __spreadValues = (a, b) => {
|
11
|
-
for (var prop in b || (b = {}))
|
12
|
-
if (__hasOwnProp.call(b, prop))
|
13
|
-
__defNormalProp(a, prop, b[prop]);
|
14
|
-
if (__getOwnPropSymbols)
|
15
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
16
|
-
if (__propIsEnum.call(b, prop))
|
17
|
-
__defNormalProp(a, prop, b[prop]);
|
18
|
-
}
|
19
|
-
return a;
|
20
|
-
};
|
21
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
22
5
|
var __export = (target, all) => {
|
23
6
|
for (var name in all)
|
24
7
|
__defProp(target, name, { get: all[name], enumerable: true });
|
@@ -32,6 +15,32 @@ var __copyProps = (to, from, except, desc) => {
|
|
32
15
|
return to;
|
33
16
|
};
|
34
17
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
18
|
+
var stdin_exports = {};
|
19
|
+
__export(stdin_exports, {
|
20
|
+
createAsyncManager: () => createAsyncManager
|
21
|
+
});
|
22
|
+
module.exports = __toCommonJS(stdin_exports);
|
23
|
+
var import_sync = require("./sync");
|
24
|
+
var import_shared = require("./shared");
|
25
|
+
var __defProp2 = Object.defineProperty;
|
26
|
+
var __defProps = Object.defineProperties;
|
27
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
28
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
29
|
+
var __hasOwnProp2 = Object.prototype.hasOwnProperty;
|
30
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
31
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
32
|
+
var __spreadValues = (a, b) => {
|
33
|
+
for (var prop in b || (b = {}))
|
34
|
+
if (__hasOwnProp2.call(b, prop))
|
35
|
+
__defNormalProp(a, prop, b[prop]);
|
36
|
+
if (__getOwnPropSymbols)
|
37
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
38
|
+
if (__propIsEnum.call(b, prop))
|
39
|
+
__defNormalProp(a, prop, b[prop]);
|
40
|
+
}
|
41
|
+
return a;
|
42
|
+
};
|
43
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
35
44
|
var __async = (__this, __arguments, generator) => {
|
36
45
|
return new Promise((resolve, reject) => {
|
37
46
|
var fulfilled = (value) => {
|
@@ -52,13 +61,6 @@ var __async = (__this, __arguments, generator) => {
|
|
52
61
|
step((generator = generator.apply(__this, __arguments)).next());
|
53
62
|
});
|
54
63
|
};
|
55
|
-
var async_exports = {};
|
56
|
-
__export(async_exports, {
|
57
|
-
createAsyncManager: () => createAsyncManager
|
58
|
-
});
|
59
|
-
module.exports = __toCommonJS(async_exports);
|
60
|
-
var import_sync = require("./sync");
|
61
|
-
var import_shared = require("./shared");
|
62
64
|
const ASYNC_PLUGIN_SYMBOL = "ASYNC_PLUGIN_SYMBOL";
|
63
65
|
const createAsyncManager = (hooks, api) => {
|
64
66
|
let index = 0;
|
@@ -141,7 +143,3 @@ const createAsyncManager = (hooks, api) => {
|
|
141
143
|
};
|
142
144
|
return clone();
|
143
145
|
};
|
144
|
-
// Annotate the CommonJS export names for ESM import in node:
|
145
|
-
0 && (module.exports = {
|
146
|
-
createAsyncManager
|
147
|
-
});
|
@@ -12,8 +12,8 @@ var __copyProps = (to, from, except, desc) => {
|
|
12
12
|
};
|
13
13
|
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
14
14
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
15
|
-
var
|
16
|
-
module.exports = __toCommonJS(
|
17
|
-
__reExport(
|
18
|
-
__reExport(
|
19
|
-
__reExport(
|
15
|
+
var stdin_exports = {};
|
16
|
+
module.exports = __toCommonJS(stdin_exports);
|
17
|
+
__reExport(stdin_exports, require("./sync"), module.exports);
|
18
|
+
__reExport(stdin_exports, require("./async"), module.exports);
|
19
|
+
__reExport(stdin_exports, require("./types"), module.exports);
|
@@ -15,15 +15,15 @@ var __copyProps = (to, from, except, desc) => {
|
|
15
15
|
return to;
|
16
16
|
};
|
17
17
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
18
|
-
var
|
19
|
-
__export(
|
18
|
+
var stdin_exports = {};
|
19
|
+
__export(stdin_exports, {
|
20
20
|
checkPlugins: () => checkPlugins,
|
21
21
|
hasOwnProperty: () => hasOwnProperty,
|
22
22
|
includePlugin: () => includePlugin,
|
23
23
|
isObject: () => isObject,
|
24
24
|
sortPlugins: () => sortPlugins
|
25
25
|
});
|
26
|
-
module.exports = __toCommonJS(
|
26
|
+
module.exports = __toCommonJS(stdin_exports);
|
27
27
|
var import_pluginDagSort = require("../utils/pluginDagSort");
|
28
28
|
const checkPlugins = (plugins) => {
|
29
29
|
plugins.forEach((origin) => {
|
@@ -50,11 +50,3 @@ function sortPlugins(input) {
|
|
50
50
|
const includePlugin = (plugins, input) => plugins.some((plugin) => plugin.name === input.name);
|
51
51
|
const isObject = (obj) => obj !== null && typeof obj === "object";
|
52
52
|
const hasOwnProperty = (obj, prop) => obj.hasOwnProperty(prop);
|
53
|
-
// Annotate the CommonJS export names for ESM import in node:
|
54
|
-
0 && (module.exports = {
|
55
|
-
checkPlugins,
|
56
|
-
hasOwnProperty,
|
57
|
-
includePlugin,
|
58
|
-
isObject,
|
59
|
-
sortPlugins
|
60
|
-
});
|
@@ -1,24 +1,7 @@
|
|
1
1
|
var __defProp = Object.defineProperty;
|
2
|
-
var __defProps = Object.defineProperties;
|
3
2
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
4
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
5
3
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
6
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
7
4
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
8
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
9
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
10
|
-
var __spreadValues = (a, b) => {
|
11
|
-
for (var prop in b || (b = {}))
|
12
|
-
if (__hasOwnProp.call(b, prop))
|
13
|
-
__defNormalProp(a, prop, b[prop]);
|
14
|
-
if (__getOwnPropSymbols)
|
15
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
16
|
-
if (__propIsEnum.call(b, prop))
|
17
|
-
__defNormalProp(a, prop, b[prop]);
|
18
|
-
}
|
19
|
-
return a;
|
20
|
-
};
|
21
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
22
5
|
var __export = (target, all) => {
|
23
6
|
for (var name in all)
|
24
7
|
__defProp(target, name, { get: all[name], enumerable: true });
|
@@ -32,19 +15,38 @@ var __copyProps = (to, from, except, desc) => {
|
|
32
15
|
return to;
|
33
16
|
};
|
34
17
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
35
|
-
var
|
36
|
-
__export(
|
18
|
+
var stdin_exports = {};
|
19
|
+
__export(stdin_exports, {
|
37
20
|
DEFAULT_OPTIONS: () => DEFAULT_OPTIONS,
|
38
21
|
cloneHook: () => cloneHook,
|
39
22
|
cloneHooksMap: () => cloneHooksMap,
|
40
23
|
createManager: () => createManager,
|
41
24
|
generateRunner: () => generateRunner
|
42
25
|
});
|
43
|
-
module.exports = __toCommonJS(
|
26
|
+
module.exports = __toCommonJS(stdin_exports);
|
44
27
|
var import_farrow_pipeline = require("../farrow-pipeline");
|
45
28
|
var import_waterfall = require("../waterfall");
|
46
29
|
var import_workflow = require("../workflow");
|
47
30
|
var import_shared = require("./shared");
|
31
|
+
var __defProp2 = Object.defineProperty;
|
32
|
+
var __defProps = Object.defineProperties;
|
33
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
34
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
35
|
+
var __hasOwnProp2 = Object.prototype.hasOwnProperty;
|
36
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
37
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
38
|
+
var __spreadValues = (a, b) => {
|
39
|
+
for (var prop in b || (b = {}))
|
40
|
+
if (__hasOwnProp2.call(b, prop))
|
41
|
+
__defNormalProp(a, prop, b[prop]);
|
42
|
+
if (__getOwnPropSymbols)
|
43
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
44
|
+
if (__propIsEnum.call(b, prop))
|
45
|
+
__defNormalProp(a, prop, b[prop]);
|
46
|
+
}
|
47
|
+
return a;
|
48
|
+
};
|
49
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
48
50
|
const SYNC_PLUGIN_SYMBOL = "SYNC_PLUGIN_SYMBOL";
|
49
51
|
const DEFAULT_OPTIONS = {
|
50
52
|
name: "untitled",
|
@@ -185,11 +187,3 @@ const cloneHooksMap = (record) => {
|
|
185
187
|
}
|
186
188
|
return result;
|
187
189
|
};
|
188
|
-
// Annotate the CommonJS export names for ESM import in node:
|
189
|
-
0 && (module.exports = {
|
190
|
-
DEFAULT_OPTIONS,
|
191
|
-
cloneHook,
|
192
|
-
cloneHooksMap,
|
193
|
-
createManager,
|
194
|
-
generateRunner
|
195
|
-
});
|
@@ -1,15 +0,0 @@
|
|
1
|
-
var __defProp = Object.defineProperty;
|
2
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
3
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
4
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
5
|
-
var __copyProps = (to, from, except, desc) => {
|
6
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
7
|
-
for (let key of __getOwnPropNames(from))
|
8
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
9
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
10
|
-
}
|
11
|
-
return to;
|
12
|
-
};
|
13
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
14
|
-
var types_exports = {};
|
15
|
-
module.exports = __toCommonJS(types_exports);
|
@@ -15,11 +15,11 @@ var __copyProps = (to, from, except, desc) => {
|
|
15
15
|
return to;
|
16
16
|
};
|
17
17
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
18
|
-
var
|
19
|
-
__export(
|
18
|
+
var stdin_exports = {};
|
19
|
+
__export(stdin_exports, {
|
20
20
|
dagSort: () => dagSort
|
21
21
|
});
|
22
|
-
module.exports = __toCommonJS(
|
22
|
+
module.exports = __toCommonJS(stdin_exports);
|
23
23
|
const dagSort = (plugins, key = "name", preKey = "pre", postKey = "post") => {
|
24
24
|
let allLines = [];
|
25
25
|
function getPluginByAny(q) {
|
@@ -72,7 +72,3 @@ const dagSort = (plugins, key = "name", preKey = "pre", postKey = "post") => {
|
|
72
72
|
}
|
73
73
|
return sortedPoint;
|
74
74
|
};
|
75
|
-
// Annotate the CommonJS export names for ESM import in node:
|
76
|
-
0 && (module.exports = {
|
77
|
-
dagSort
|
78
|
-
});
|
@@ -1,24 +1,7 @@
|
|
1
1
|
var __defProp = Object.defineProperty;
|
2
|
-
var __defProps = Object.defineProperties;
|
3
2
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
4
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
5
3
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
6
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
7
4
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
8
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
9
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
10
|
-
var __spreadValues = (a, b) => {
|
11
|
-
for (var prop in b || (b = {}))
|
12
|
-
if (__hasOwnProp.call(b, prop))
|
13
|
-
__defNormalProp(a, prop, b[prop]);
|
14
|
-
if (__getOwnPropSymbols)
|
15
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
16
|
-
if (__propIsEnum.call(b, prop))
|
17
|
-
__defNormalProp(a, prop, b[prop]);
|
18
|
-
}
|
19
|
-
return a;
|
20
|
-
};
|
21
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
22
5
|
var __export = (target, all) => {
|
23
6
|
for (var name in all)
|
24
7
|
__defProp(target, name, { get: all[name], enumerable: true });
|
@@ -32,6 +15,33 @@ var __copyProps = (to, from, except, desc) => {
|
|
32
15
|
return to;
|
33
16
|
};
|
34
17
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
18
|
+
var stdin_exports = {};
|
19
|
+
__export(stdin_exports, {
|
20
|
+
createAsyncWaterfall: () => createAsyncWaterfall,
|
21
|
+
getAsyncBrook: () => getAsyncBrook,
|
22
|
+
isAsyncWaterfall: () => isAsyncWaterfall
|
23
|
+
});
|
24
|
+
module.exports = __toCommonJS(stdin_exports);
|
25
|
+
var import_farrow_pipeline = require("../farrow-pipeline");
|
26
|
+
var __defProp2 = Object.defineProperty;
|
27
|
+
var __defProps = Object.defineProperties;
|
28
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
29
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
30
|
+
var __hasOwnProp2 = Object.prototype.hasOwnProperty;
|
31
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
32
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
33
|
+
var __spreadValues = (a, b) => {
|
34
|
+
for (var prop in b || (b = {}))
|
35
|
+
if (__hasOwnProp2.call(b, prop))
|
36
|
+
__defNormalProp(a, prop, b[prop]);
|
37
|
+
if (__getOwnPropSymbols)
|
38
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
39
|
+
if (__propIsEnum.call(b, prop))
|
40
|
+
__defNormalProp(a, prop, b[prop]);
|
41
|
+
}
|
42
|
+
return a;
|
43
|
+
};
|
44
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
35
45
|
var __async = (__this, __arguments, generator) => {
|
36
46
|
return new Promise((resolve, reject) => {
|
37
47
|
var fulfilled = (value) => {
|
@@ -52,14 +62,6 @@ var __async = (__this, __arguments, generator) => {
|
|
52
62
|
step((generator = generator.apply(__this, __arguments)).next());
|
53
63
|
});
|
54
64
|
};
|
55
|
-
var async_exports = {};
|
56
|
-
__export(async_exports, {
|
57
|
-
createAsyncWaterfall: () => createAsyncWaterfall,
|
58
|
-
getAsyncBrook: () => getAsyncBrook,
|
59
|
-
isAsyncWaterfall: () => isAsyncWaterfall
|
60
|
-
});
|
61
|
-
module.exports = __toCommonJS(async_exports);
|
62
|
-
var import_farrow_pipeline = require("../farrow-pipeline");
|
63
65
|
const ASYNC_WATERFALL_SYMBOL = Symbol.for("MODERN_ASYNC_WATERFALL");
|
64
66
|
const getAsyncBrook = (input) => {
|
65
67
|
if (typeof input === "function") {
|
@@ -93,9 +95,3 @@ const isAsyncWaterfall = (input) => Boolean(input == null ? void 0 : input[ASYNC
|
|
93
95
|
const mapAsyncBrookToAsyncMiddleware = (brook) => (input, next) => __async(void 0, null, function* () {
|
94
96
|
return next(yield brook(input));
|
95
97
|
});
|
96
|
-
// Annotate the CommonJS export names for ESM import in node:
|
97
|
-
0 && (module.exports = {
|
98
|
-
createAsyncWaterfall,
|
99
|
-
getAsyncBrook,
|
100
|
-
isAsyncWaterfall
|
101
|
-
});
|
@@ -12,7 +12,7 @@ var __copyProps = (to, from, except, desc) => {
|
|
12
12
|
};
|
13
13
|
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
14
14
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
15
|
-
var
|
16
|
-
module.exports = __toCommonJS(
|
17
|
-
__reExport(
|
18
|
-
__reExport(
|
15
|
+
var stdin_exports = {};
|
16
|
+
module.exports = __toCommonJS(stdin_exports);
|
17
|
+
__reExport(stdin_exports, require("./sync"), module.exports);
|
18
|
+
__reExport(stdin_exports, require("./async"), module.exports);
|
@@ -1,24 +1,7 @@
|
|
1
1
|
var __defProp = Object.defineProperty;
|
2
|
-
var __defProps = Object.defineProperties;
|
3
2
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
4
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
5
3
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
6
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
7
4
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
8
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
9
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
10
|
-
var __spreadValues = (a, b) => {
|
11
|
-
for (var prop in b || (b = {}))
|
12
|
-
if (__hasOwnProp.call(b, prop))
|
13
|
-
__defNormalProp(a, prop, b[prop]);
|
14
|
-
if (__getOwnPropSymbols)
|
15
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
16
|
-
if (__propIsEnum.call(b, prop))
|
17
|
-
__defNormalProp(a, prop, b[prop]);
|
18
|
-
}
|
19
|
-
return a;
|
20
|
-
};
|
21
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
22
5
|
var __export = (target, all) => {
|
23
6
|
for (var name in all)
|
24
7
|
__defProp(target, name, { get: all[name], enumerable: true });
|
@@ -32,14 +15,33 @@ var __copyProps = (to, from, except, desc) => {
|
|
32
15
|
return to;
|
33
16
|
};
|
34
17
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
35
|
-
var
|
36
|
-
__export(
|
18
|
+
var stdin_exports = {};
|
19
|
+
__export(stdin_exports, {
|
37
20
|
createWaterfall: () => createWaterfall,
|
38
21
|
getBrook: () => getBrook,
|
39
22
|
isWaterfall: () => isWaterfall
|
40
23
|
});
|
41
|
-
module.exports = __toCommonJS(
|
24
|
+
module.exports = __toCommonJS(stdin_exports);
|
42
25
|
var import_farrow_pipeline = require("../farrow-pipeline");
|
26
|
+
var __defProp2 = Object.defineProperty;
|
27
|
+
var __defProps = Object.defineProperties;
|
28
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
29
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
30
|
+
var __hasOwnProp2 = Object.prototype.hasOwnProperty;
|
31
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
32
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
33
|
+
var __spreadValues = (a, b) => {
|
34
|
+
for (var prop in b || (b = {}))
|
35
|
+
if (__hasOwnProp2.call(b, prop))
|
36
|
+
__defNormalProp(a, prop, b[prop]);
|
37
|
+
if (__getOwnPropSymbols)
|
38
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
39
|
+
if (__propIsEnum.call(b, prop))
|
40
|
+
__defNormalProp(a, prop, b[prop]);
|
41
|
+
}
|
42
|
+
return a;
|
43
|
+
};
|
44
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
43
45
|
const WATERFALL_SYMBOL = Symbol.for("MODERN_WATERFALL");
|
44
46
|
const getBrook = (input) => {
|
45
47
|
if (typeof input === "function") {
|
@@ -69,9 +71,3 @@ const createWaterfall = () => {
|
|
69
71
|
};
|
70
72
|
const isWaterfall = (input) => Boolean(input == null ? void 0 : input[WATERFALL_SYMBOL]);
|
71
73
|
const mapBrookToMiddleware = (brook) => (input, next) => next(brook(input));
|
72
|
-
// Annotate the CommonJS export names for ESM import in node:
|
73
|
-
0 && (module.exports = {
|
74
|
-
createWaterfall,
|
75
|
-
getBrook,
|
76
|
-
isWaterfall
|
77
|
-
});
|
@@ -1,24 +1,7 @@
|
|
1
1
|
var __defProp = Object.defineProperty;
|
2
|
-
var __defProps = Object.defineProperties;
|
3
2
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
4
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
5
3
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
6
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
7
4
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
8
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
9
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
10
|
-
var __spreadValues = (a, b) => {
|
11
|
-
for (var prop in b || (b = {}))
|
12
|
-
if (__hasOwnProp.call(b, prop))
|
13
|
-
__defNormalProp(a, prop, b[prop]);
|
14
|
-
if (__getOwnPropSymbols)
|
15
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
16
|
-
if (__propIsEnum.call(b, prop))
|
17
|
-
__defNormalProp(a, prop, b[prop]);
|
18
|
-
}
|
19
|
-
return a;
|
20
|
-
};
|
21
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
22
5
|
var __export = (target, all) => {
|
23
6
|
for (var name in all)
|
24
7
|
__defProp(target, name, { get: all[name], enumerable: true });
|
@@ -32,6 +15,32 @@ var __copyProps = (to, from, except, desc) => {
|
|
32
15
|
return to;
|
33
16
|
};
|
34
17
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
18
|
+
var stdin_exports = {};
|
19
|
+
__export(stdin_exports, {
|
20
|
+
createAsyncWorkflow: () => createAsyncWorkflow,
|
21
|
+
isAsyncWorkflow: () => isAsyncWorkflow
|
22
|
+
});
|
23
|
+
module.exports = __toCommonJS(stdin_exports);
|
24
|
+
var import_farrow_pipeline = require("../farrow-pipeline");
|
25
|
+
var __defProp2 = Object.defineProperty;
|
26
|
+
var __defProps = Object.defineProperties;
|
27
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
28
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
29
|
+
var __hasOwnProp2 = Object.prototype.hasOwnProperty;
|
30
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
31
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
32
|
+
var __spreadValues = (a, b) => {
|
33
|
+
for (var prop in b || (b = {}))
|
34
|
+
if (__hasOwnProp2.call(b, prop))
|
35
|
+
__defNormalProp(a, prop, b[prop]);
|
36
|
+
if (__getOwnPropSymbols)
|
37
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
38
|
+
if (__propIsEnum.call(b, prop))
|
39
|
+
__defNormalProp(a, prop, b[prop]);
|
40
|
+
}
|
41
|
+
return a;
|
42
|
+
};
|
43
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
35
44
|
var __async = (__this, __arguments, generator) => {
|
36
45
|
return new Promise((resolve, reject) => {
|
37
46
|
var fulfilled = (value) => {
|
@@ -52,13 +61,6 @@ var __async = (__this, __arguments, generator) => {
|
|
52
61
|
step((generator = generator.apply(__this, __arguments)).next());
|
53
62
|
});
|
54
63
|
};
|
55
|
-
var async_exports = {};
|
56
|
-
__export(async_exports, {
|
57
|
-
createAsyncWorkflow: () => createAsyncWorkflow,
|
58
|
-
isAsyncWorkflow: () => isAsyncWorkflow
|
59
|
-
});
|
60
|
-
module.exports = __toCommonJS(async_exports);
|
61
|
-
var import_farrow_pipeline = require("../farrow-pipeline");
|
62
64
|
const ASYNC_WORKFLOW_SYMBOL = Symbol.for("MODERN_ASYNC_WORKFLOW");
|
63
65
|
const isAsyncWorkflow = (input) => Boolean(input == null ? void 0 : input[ASYNC_WORKFLOW_SYMBOL]);
|
64
66
|
const createAsyncWorkflow = () => {
|
@@ -88,8 +90,3 @@ const mapAsyncWorkerToAsyncMiddleware = (worker) => (input, next) => __async(voi
|
|
88
90
|
function isPromise(obj) {
|
89
91
|
return Boolean(obj) && (typeof obj === "object" || typeof obj === "function") && typeof obj.then === "function";
|
90
92
|
}
|
91
|
-
// Annotate the CommonJS export names for ESM import in node:
|
92
|
-
0 && (module.exports = {
|
93
|
-
createAsyncWorkflow,
|
94
|
-
isAsyncWorkflow
|
95
|
-
});
|
@@ -12,8 +12,8 @@ var __copyProps = (to, from, except, desc) => {
|
|
12
12
|
};
|
13
13
|
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
14
14
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
15
|
-
var
|
16
|
-
module.exports = __toCommonJS(
|
17
|
-
__reExport(
|
18
|
-
__reExport(
|
19
|
-
__reExport(
|
15
|
+
var stdin_exports = {};
|
16
|
+
module.exports = __toCommonJS(stdin_exports);
|
17
|
+
__reExport(stdin_exports, require("./sync"), module.exports);
|
18
|
+
__reExport(stdin_exports, require("./parallel"), module.exports);
|
19
|
+
__reExport(stdin_exports, require("./async"), module.exports);
|
@@ -1,24 +1,7 @@
|
|
1
1
|
var __defProp = Object.defineProperty;
|
2
|
-
var __defProps = Object.defineProperties;
|
3
2
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
4
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
5
3
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
6
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
7
4
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
8
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
9
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
10
|
-
var __spreadValues = (a, b) => {
|
11
|
-
for (var prop in b || (b = {}))
|
12
|
-
if (__hasOwnProp.call(b, prop))
|
13
|
-
__defNormalProp(a, prop, b[prop]);
|
14
|
-
if (__getOwnPropSymbols)
|
15
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
16
|
-
if (__propIsEnum.call(b, prop))
|
17
|
-
__defNormalProp(a, prop, b[prop]);
|
18
|
-
}
|
19
|
-
return a;
|
20
|
-
};
|
21
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
22
5
|
var __export = (target, all) => {
|
23
6
|
for (var name in all)
|
24
7
|
__defProp(target, name, { get: all[name], enumerable: true });
|
@@ -32,6 +15,32 @@ var __copyProps = (to, from, except, desc) => {
|
|
32
15
|
return to;
|
33
16
|
};
|
34
17
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
18
|
+
var stdin_exports = {};
|
19
|
+
__export(stdin_exports, {
|
20
|
+
createParallelWorkflow: () => createParallelWorkflow,
|
21
|
+
isParallelWorkflow: () => isParallelWorkflow
|
22
|
+
});
|
23
|
+
module.exports = __toCommonJS(stdin_exports);
|
24
|
+
var import_farrow_pipeline = require("../farrow-pipeline");
|
25
|
+
var __defProp2 = Object.defineProperty;
|
26
|
+
var __defProps = Object.defineProperties;
|
27
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
28
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
29
|
+
var __hasOwnProp2 = Object.prototype.hasOwnProperty;
|
30
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
31
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
32
|
+
var __spreadValues = (a, b) => {
|
33
|
+
for (var prop in b || (b = {}))
|
34
|
+
if (__hasOwnProp2.call(b, prop))
|
35
|
+
__defNormalProp(a, prop, b[prop]);
|
36
|
+
if (__getOwnPropSymbols)
|
37
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
38
|
+
if (__propIsEnum.call(b, prop))
|
39
|
+
__defNormalProp(a, prop, b[prop]);
|
40
|
+
}
|
41
|
+
return a;
|
42
|
+
};
|
43
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
35
44
|
var __async = (__this, __arguments, generator) => {
|
36
45
|
return new Promise((resolve, reject) => {
|
37
46
|
var fulfilled = (value) => {
|
@@ -52,13 +61,6 @@ var __async = (__this, __arguments, generator) => {
|
|
52
61
|
step((generator = generator.apply(__this, __arguments)).next());
|
53
62
|
});
|
54
63
|
};
|
55
|
-
var parallel_exports = {};
|
56
|
-
__export(parallel_exports, {
|
57
|
-
createParallelWorkflow: () => createParallelWorkflow,
|
58
|
-
isParallelWorkflow: () => isParallelWorkflow
|
59
|
-
});
|
60
|
-
module.exports = __toCommonJS(parallel_exports);
|
61
|
-
var import_farrow_pipeline = require("../farrow-pipeline");
|
62
64
|
const PARALLEL_WORKFLOW_SYMBOL = Symbol.for("MODERN_PARALLEL_WORKFLOW");
|
63
65
|
const isParallelWorkflow = (input) => Boolean(input == null ? void 0 : input[PARALLEL_WORKFLOW_SYMBOL]);
|
64
66
|
const createParallelWorkflow = () => {
|
@@ -80,8 +82,3 @@ const createParallelWorkflow = () => {
|
|
80
82
|
return workflow;
|
81
83
|
};
|
82
84
|
const mapParallelWorkerToAsyncMiddleware = (worker) => (input, next) => [worker(input), ...next(input)];
|
83
|
-
// Annotate the CommonJS export names for ESM import in node:
|
84
|
-
0 && (module.exports = {
|
85
|
-
createParallelWorkflow,
|
86
|
-
isParallelWorkflow
|
87
|
-
});
|
@@ -1,24 +1,7 @@
|
|
1
1
|
var __defProp = Object.defineProperty;
|
2
|
-
var __defProps = Object.defineProperties;
|
3
2
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
4
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
5
3
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
6
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
7
4
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
8
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
9
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
10
|
-
var __spreadValues = (a, b) => {
|
11
|
-
for (var prop in b || (b = {}))
|
12
|
-
if (__hasOwnProp.call(b, prop))
|
13
|
-
__defNormalProp(a, prop, b[prop]);
|
14
|
-
if (__getOwnPropSymbols)
|
15
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
16
|
-
if (__propIsEnum.call(b, prop))
|
17
|
-
__defNormalProp(a, prop, b[prop]);
|
18
|
-
}
|
19
|
-
return a;
|
20
|
-
};
|
21
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
22
5
|
var __export = (target, all) => {
|
23
6
|
for (var name in all)
|
24
7
|
__defProp(target, name, { get: all[name], enumerable: true });
|
@@ -32,13 +15,32 @@ var __copyProps = (to, from, except, desc) => {
|
|
32
15
|
return to;
|
33
16
|
};
|
34
17
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
35
|
-
var
|
36
|
-
__export(
|
18
|
+
var stdin_exports = {};
|
19
|
+
__export(stdin_exports, {
|
37
20
|
createWorkflow: () => createWorkflow,
|
38
21
|
isWorkflow: () => isWorkflow
|
39
22
|
});
|
40
|
-
module.exports = __toCommonJS(
|
23
|
+
module.exports = __toCommonJS(stdin_exports);
|
41
24
|
var import_farrow_pipeline = require("../farrow-pipeline");
|
25
|
+
var __defProp2 = Object.defineProperty;
|
26
|
+
var __defProps = Object.defineProperties;
|
27
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
28
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
29
|
+
var __hasOwnProp2 = Object.prototype.hasOwnProperty;
|
30
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
31
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
32
|
+
var __spreadValues = (a, b) => {
|
33
|
+
for (var prop in b || (b = {}))
|
34
|
+
if (__hasOwnProp2.call(b, prop))
|
35
|
+
__defNormalProp(a, prop, b[prop]);
|
36
|
+
if (__getOwnPropSymbols)
|
37
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
38
|
+
if (__propIsEnum.call(b, prop))
|
39
|
+
__defNormalProp(a, prop, b[prop]);
|
40
|
+
}
|
41
|
+
return a;
|
42
|
+
};
|
43
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
42
44
|
const WORKFLOW_SYMBOL = Symbol.for("MODERN_WORKFLOW");
|
43
45
|
const createWorkflow = () => {
|
44
46
|
const pipeline = (0, import_farrow_pipeline.createPipeline)();
|
@@ -59,8 +61,3 @@ const createWorkflow = () => {
|
|
59
61
|
};
|
60
62
|
const isWorkflow = (input) => Boolean(input == null ? void 0 : input[WORKFLOW_SYMBOL]);
|
61
63
|
const mapWorkerToMiddleware = (worker) => (input, next) => [worker(input), ...next(input)];
|
62
|
-
// Annotate the CommonJS export names for ESM import in node:
|
63
|
-
0 && (module.exports = {
|
64
|
-
createWorkflow,
|
65
|
-
isWorkflow
|
66
|
-
});
|
package/package.json
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
"modern",
|
12
12
|
"modern.js"
|
13
13
|
],
|
14
|
-
"version": "0.0.0-next-
|
14
|
+
"version": "0.0.0-next-20221215054031",
|
15
15
|
"jsnext:source": "./src/index.ts",
|
16
16
|
"types": "./dist/types/index.d.ts",
|
17
17
|
"main": "./dist/js/node/index.js",
|
@@ -36,8 +36,8 @@
|
|
36
36
|
"@types/node": "^14",
|
37
37
|
"typescript": "^4",
|
38
38
|
"jest": "^27",
|
39
|
-
"@scripts/build": "0.0.0-next-
|
40
|
-
"@scripts/jest-config": "0.0.0-next-
|
39
|
+
"@scripts/build": "0.0.0-next-20221215054031",
|
40
|
+
"@scripts/jest-config": "0.0.0-next-20221215054031"
|
41
41
|
},
|
42
42
|
"sideEffects": false,
|
43
43
|
"publishConfig": {
|