Skip to content

Commit 0af7566

Browse files
committed
v0.0.7
1 parent c5c1ef4 commit 0af7566

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lpsmods/mc-utils",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"author": "legopitstop",
55
"license": "MIT",
66
"description": "Utilities for making Minecraft: Bedrock Edition scripts",
@@ -47,4 +47,4 @@
4747
"molang": "2.0.1",
4848
"superstruct": "2.0.2"
4949
}
50-
}
50+
}

src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ export * from "./cache";
2323
export * from "./main";
2424
export * from "./mixins";
2525
export * from "./type";
26-
export * from "./utils";
2726
export * from "./settings";
2827
export * from "./area_detector";
2928
export * from "./drawer";

src/utils/index.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
1+
export * from "./addon";
12
export * from "./attack";
3+
export * from "./direction";
4+
export * from "./error";
5+
export * from "./math";
6+
export * from "./molang";
7+
export * from "./random";
8+
export * from "./text";
9+
export * from "./misc";

src/utils.ts renamed to src/utils/misc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { system, Block, Vector3, Dimension, DimensionTypes, world } from "@minecraft/server";
2-
import { LRUCache } from "./cache";
2+
import { LRUCache } from "../cache";
33

44
const soundCache = new LRUCache<string, string>();
55
/**

0 commit comments

Comments
 (0)