forked from hyperledger-cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(github): fix type exports in packages/cactus-common
Primary Changes --------------- 1. Remove packages/cactus-common/hyperledger-cactus-common-*.tgz in ignore paths in get-all-tgz-path.ts file 2. Added the missing LogLevelDesc in index.ts as per attw -f json error log Fixes: hyperledger-cacti#3635 Signed-off-by: ruzell22 <[email protected]>
- Loading branch information
Showing
2 changed files
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,17 @@ | ||
export * from "./public-api"; | ||
export { IListenOptions, Servers } from "./servers"; | ||
export const LogLevel = { | ||
TRACE: "TRACE", | ||
trace: "trace", | ||
ERROR: "ERROR", | ||
error: "error", | ||
WARN: "WARN", | ||
warn: "warn", | ||
INFO: "INFO", | ||
info: "info", | ||
DEBUG: "DEBUG", | ||
debug: "debug", | ||
SILENT: "SILENT", | ||
silent: "silent", | ||
} as const; | ||
export type LogLevelDesc = (typeof LogLevel)[keyof typeof LogLevel]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters