@maxdrellin/xenocline 0.0.7 → 0.0.8
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/dist/aggregator.d.ts +25 -0
- package/dist/aggregator.js.map +1 -1
- package/dist/execution/aggregator.d.ts +1 -1
- package/dist/execution/aggregator.js.map +1 -1
- package/dist/execution/next.js +35 -14
- package/dist/execution/next.js.map +1 -1
- package/dist/execution/node.js +18 -4
- package/dist/execution/node.js.map +1 -1
- package/dist/execution/process.js +19 -1
- package/dist/execution/process.js.map +1 -1
- package/dist/node/phasenode.d.ts +22 -0
- package/dist/node/phasenode.js.map +1 -1
- package/dist/transition/beginning.js.map +1 -1
- package/dist/transition/connection.d.ts +29 -0
- package/dist/transition/connection.js +11 -1
- package/dist/transition/connection.js.map +1 -1
- package/dist/xenocline.cjs +83 -20
- package/dist/xenocline.cjs.map +1 -1
- package/package.json +1 -1
- package/scripts/pre-commit-hook.sh +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maxdrellin/xenocline",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"description": "Xenocline provides a streamlined, modular framework to manage and execute Processor Pipelines—sequences of computational steps or tasks executed systematically to process data or events. It allows developers to define, connect, and orchestrate individual processors into efficient workflows, supporting clear separation of concerns, scalability, and ease of maintenance.",
|
|
5
5
|
"main": "dist/xenocline.cjs",
|
|
6
6
|
"module": "dist/xenocline.js",
|