diff --git a/package.json b/package.json index 11191b0..8d3c560 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "node-launcher-kit", "homepage": "https://github.com/HerozDotExe/node-launcher-kit", - "version": "2.0.0", + "version": "2.1.1", "description": "A typescript library to install and launch minecraft with or without modloaders.", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/index.ts b/src/index.ts index e4b1f18..86658a9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,2 +1,3 @@ export * as core from "./core"; export * from "./launcher"; +export {errors, type types} from "./utils" \ No newline at end of file diff --git a/src/utils/index.ts b/src/utils/index.ts new file mode 100644 index 0000000..9aad211 --- /dev/null +++ b/src/utils/index.ts @@ -0,0 +1,2 @@ +export * as errors from "./errors"; +export * as types from "./types";