zen-flow 9.0.0 → 11.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 +24 -19
- package/dist/zenflow.cjs +297 -302
- package/dist/zenflow.d.cts +336 -225
- package/dist/zenflow.d.mts +336 -225
- package/dist/zenflow.mjs +292 -299
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -21,21 +21,20 @@ $ npm i zen-flow -D
|
|
|
21
21
|
|
|
22
22
|
## Features
|
|
23
23
|
|
|
24
|
-
- Easy to use API, written in <b>TypeScript</b
|
|
25
|
-
-
|
|
26
|
-
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
- Tinkers' Construct
|
|
24
|
+
- Easy to use API, written in <b>TypeScript</b>
|
|
25
|
+
- Extensive documentation
|
|
26
|
+
- Supports [MineTweaker](https://minetweaker3.aizistral.com/wiki/Main_Page), [ModTweaker](https://minetweaker3.aizistral.com/wiki/ModTweaker) and [ContentTweaker](https://minetweaker3.aizistral.com/wiki/ContentTweaker)
|
|
27
|
+
- Formatted output (for easy debugging)
|
|
28
|
+
- Includes mod support for:
|
|
29
|
+
- Applied Energistics 2
|
|
30
|
+
- Avaritia
|
|
31
|
+
- Ex Nihilo
|
|
32
|
+
- Extra Utilities
|
|
33
|
+
- Forestry
|
|
34
|
+
- MineFactory Reloaded
|
|
35
|
+
- NEI
|
|
36
|
+
- Thermal Expansion
|
|
37
|
+
- Tinkers' Construct
|
|
39
38
|
|
|
40
39
|
## Example
|
|
41
40
|
|
|
@@ -49,9 +48,12 @@ import { add, remove, hide } from 'zen-flow';
|
|
|
49
48
|
* [null, null, null]
|
|
50
49
|
* ]);
|
|
51
50
|
**/
|
|
52
|
-
add(
|
|
53
|
-
|
|
54
|
-
|
|
51
|
+
add({
|
|
52
|
+
input: {
|
|
53
|
+
1: '<minecraft:leather>', 2: '<minecraft:leather>', 3: '<minecraft:leather>',
|
|
54
|
+
4: '<ore:ingotIron', 5: '<minecraft:string>', 6: '<ore:ingotIron>'
|
|
55
|
+
},
|
|
56
|
+
output: '<minecraft:saddle>'
|
|
55
57
|
});
|
|
56
58
|
|
|
57
59
|
/**
|
|
@@ -61,7 +63,10 @@ add('<minecraft:saddle>', {
|
|
|
61
63
|
* [null, <minecraft:leather>, null]
|
|
62
64
|
* ]);
|
|
63
65
|
**/
|
|
64
|
-
add(
|
|
66
|
+
add({
|
|
67
|
+
input: { edge: '<minecraft:leather>' },
|
|
68
|
+
output: '<minecraft:saddle>'
|
|
69
|
+
});
|
|
65
70
|
|
|
66
71
|
// Remove & hide Extra Utility generators
|
|
67
72
|
|