Skip to content

Commit

Permalink
ci(github): fix type exports in packages/cactus-common
Browse files Browse the repository at this point in the history
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.js and index.d.ts as per attw
-f json error log

Fixes: #3635

Signed-off-by: ruzell22 <[email protected]>
  • Loading branch information
ruzell22 committed Nov 21, 2024
1 parent 27a24dd commit 83345db
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 7 additions & 0 deletions packages/cactus-common/src/main/typescript/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
export * from "./public-api";
export { IListenOptions, Servers } from "./servers";
export declare const LogLevelDesc: {
TRACE: string;
ERROR: string;
WARN: string;
INFO: string;
DEBUG: string;
};
2 changes: 0 additions & 2 deletions tools/custom-checks/get-all-tgz-path.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,6 @@ export async function getAllTgzPath(): Promise<IGetAllTgzPathResponse> {
"packages/cactus-verifier-client/hyperledger-cactus-verifier-client-*.tgz",
// link for issue ticket relating to this package: https://github.com/hyperledger-cacti/cacti/issues/3634
"packages/cactus-plugin-ledger-connector-polkadot/hyperledger-cactus-plugin-ledger-connector-polkadot-*.tgz",
// link for issue ticket relating to this package: https://github.com/hyperledger-cacti/cacti/issues/3635
"packages/cactus-common/hyperledger-cactus-common-*.tgz",
],
};

Expand Down

0 comments on commit 83345db

Please sign in to comment.