rura 0.0.0 → 1.0.0
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/README.md +5 -6
- package/package.json +17 -3
package/README.md
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
<div align="center">
|
|
4
4
|
|
|
5
|
-
A minimal **pipeline engine** for every modern workflow
|
|
5
|
+
A minimal **pipeline engine** for every modern workflow,
|
|
6
|
+
built for clarity and stability.
|
|
6
7
|
|
|
7
8
|
</div>
|
|
8
9
|
|
|
@@ -16,13 +17,11 @@ A minimal **pipeline engine** for every modern workflow.
|
|
|
16
17
|
|
|
17
18
|
</div>
|
|
18
19
|
|
|
19
|
-
> Clarity meets stability.
|
|
20
|
-
|
|
21
20
|
## Features
|
|
22
21
|
|
|
23
|
-
-
|
|
24
|
-
-
|
|
25
|
-
-
|
|
22
|
+
- **Deterministic** – Ordered hooks with effortless early exit.
|
|
23
|
+
- **Typed** – Inferred context and output with zero boilerplate.
|
|
24
|
+
- **Universal** – Tiny, framework-agnostic, and ready for any flow.
|
|
26
25
|
|
|
27
26
|
## Installation
|
|
28
27
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rura",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "A
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "💧 A pipeline engine that flows like water.",
|
|
5
5
|
"author": "Yiming Liao",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://github.com/yiming-liao/rura#readme",
|
|
@@ -12,7 +12,21 @@
|
|
|
12
12
|
"bugs": {
|
|
13
13
|
"url": "https://github.com/yiming-liao/rura/issues"
|
|
14
14
|
},
|
|
15
|
-
"keywords": [
|
|
15
|
+
"keywords": [
|
|
16
|
+
"pipeline",
|
|
17
|
+
"hooks",
|
|
18
|
+
"hook-system",
|
|
19
|
+
"pipeline-engine",
|
|
20
|
+
"flow",
|
|
21
|
+
"workflow",
|
|
22
|
+
"middleware",
|
|
23
|
+
"typescript",
|
|
24
|
+
"ts",
|
|
25
|
+
"utility",
|
|
26
|
+
"functional",
|
|
27
|
+
"composition",
|
|
28
|
+
"composable"
|
|
29
|
+
],
|
|
16
30
|
"exports": {
|
|
17
31
|
".": {
|
|
18
32
|
"types": "./dist/index.d.ts",
|