Skip to content

Commit 456edff

Browse files
committed
fix: properly expose util functions
1 parent b8fcef7 commit 456edff

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "quickentity-script",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"description": "An easier way of writing QN patches with code",
55
"main": "dist/src/lib.js",
66
"types": "./dist/src/index.d.ts",

src/lib.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11

2-
export * as entities from './utils/entities.js'
32
export * from './entities/entity/_index.js'
43
export * from './patches/entity/_index.js'
54
export * from './patches/PatchActions.js'
6-
export * as hash from './utils/hash.js'
75
export * from './entities/QNEntity.js'
86
export * from './patches/QNPatch.js'
97
export * from './entities/entity.js'
8+
export * from './utils/entities.js'
109
export * from './patches/patch.js'
1110
export * from './utils/common.js'
1211
export * from './CommonPaths.js'
1312
export * from './CommonRoots.js'
1413
export * from './utils/paths.js'
1514
export type * from './types.js'
15+
export * from './utils/hash.js'
1616
export * from './game.js'

0 commit comments

Comments
 (0)