zen-flow 7.2.0 → 7.2.1

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/zenflow.cjs CHANGED
@@ -72,8 +72,7 @@ const STYLE = {
72
72
  bold: "\\u00A7l",
73
73
  strikethrough: "\\u00A7m",
74
74
  underline: "\\u00A7n",
75
- italic: "\\u00A7o",
76
- reset: "\\u00A7r"
75
+ italic: "\\u00A7o"
77
76
  };
78
77
  const name = (...texts) => literal(texts.map((text) => {
79
78
  if (typeof text === "string") return text;
@@ -53,7 +53,6 @@ declare const STYLE: {
53
53
  readonly strikethrough: "\\u00A7m";
54
54
  readonly underline: "\\u00A7n";
55
55
  readonly italic: "\\u00A7o";
56
- readonly reset: "\\u00A7r";
57
56
  };
58
57
  type TextRich = {
59
58
  text: string;
@@ -53,7 +53,6 @@ declare const STYLE: {
53
53
  readonly strikethrough: "\\u00A7m";
54
54
  readonly underline: "\\u00A7n";
55
55
  readonly italic: "\\u00A7o";
56
- readonly reset: "\\u00A7r";
57
56
  };
58
57
  type TextRich = {
59
58
  text: string;
package/dist/zenflow.mjs CHANGED
@@ -70,8 +70,7 @@ const STYLE = {
70
70
  bold: "\\u00A7l",
71
71
  strikethrough: "\\u00A7m",
72
72
  underline: "\\u00A7n",
73
- italic: "\\u00A7o",
74
- reset: "\\u00A7r"
73
+ italic: "\\u00A7o"
75
74
  };
76
75
  const name = (...texts) => literal(texts.map((text) => {
77
76
  if (typeof text === "string") return text;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zen-flow",
3
- "version": "7.2.0",
3
+ "version": "7.2.1",
4
4
  "description": "MineTweaker ZenScript made easy.",
5
5
  "main": "dist/zenflow.cjs",
6
6
  "module": "dist/zenflow.mjs",