Adding options export

This commit is contained in:
Fabian 2019-03-31 23:50:11 -04:00
parent e489a15892
commit be009d24c0
3 changed files with 4 additions and 3 deletions

3
.gitignore vendored
View File

@ -1,4 +1,5 @@
node_modules/ node_modules/
logs/ logs/
yarn.lock yarn.lock
out/ out/
.history/

View File

@ -1,6 +1,6 @@
{ {
"name": "@hibas123/logging", "name": "@hibas123/logging",
"version": "1.0.0", "version": "1.0.1",
"description": "", "description": "",
"main": "out/index.js", "main": "out/index.js",
"types": "out/index.d.ts", "types": "out/index.d.ts",

View File

@ -1,5 +1,5 @@
import { LoggingBase } from "./base"; import { LoggingBase } from "./base";
export { Colors, LoggingBase } from "./base"; export { Colors, LoggingBase, LoggingBaseOptions } from "./base";
export { Adapter, LoggingTypes, Message } from "./types"; export { Adapter, LoggingTypes, Message } from "./types";
export { ObservableInterface } from "@hibas123/utils"; export { ObservableInterface } from "@hibas123/utils";