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 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
- - Supports [MineTweaker](https://minetweaker3.aizistral.com/wiki/Main_Page), [ModTweaker](https://minetweaker3.aizistral.com/wiki/ModTweaker) and [ContentTweaker](https://minetweaker3.aizistral.com/wiki/ContentTweaker).
26
- - Formatted output
27
-
28
- ### Supports
29
-
30
- - Applied Energistics 2
31
- - Avaritia
32
- - Ex Nihilo
33
- - Extra Utilities
34
- - Forestry
35
- - MineFactory Reloaded
36
- - NEI
37
- - Thermal Expansion
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('<minecraft:saddle>', {
53
- 1: '<minecraft:leather>', 2: '<minecraft:leather>', 3: '<minecraft:leather>',
54
- 4: '<ore:ingotIron', 5: '<minecraft:string>', 6: '<ore:ingotIron>'
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('<minecraft:saddle>', { edge: '<minecraft:leather>' });
66
+ add({
67
+ input: { edge: '<minecraft:leather>' },
68
+ output: '<minecraft:saddle>'
69
+ });
65
70
 
66
71
  // Remove & hide Extra Utility generators
67
72