diff --git a/.gitignore b/.gitignore index 2ef46cc..56cf069 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ node_modules/ logs/ yarn.lock -out/ \ No newline at end of file +out/ +.history/ \ No newline at end of file diff --git a/package.json b/package.json index a4c82f8..4988cff 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@hibas123/logging", - "version": "1.0.0", + "version": "1.0.1", "description": "", "main": "out/index.js", "types": "out/index.d.ts", diff --git a/src/index.ts b/src/index.ts index 4b18dee..4cbb18c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,5 @@ import { LoggingBase } from "./base"; -export { Colors, LoggingBase } from "./base"; +export { Colors, LoggingBase, LoggingBaseOptions } from "./base"; export { Adapter, LoggingTypes, Message } from "./types"; export { ObservableInterface } from "@hibas123/utils";