Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cli/base-command.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Command, Flags } from "@oclif/core";
import defaults from "../common-utils/defaults.js";
import PKC from "@pkcprotocol/pkc-js";
import PKC from "@pkcprotocol/pkc-js/client";

Check failure on line 3 in src/cli/base-command.ts

View workflow job for this annotation

GitHub Actions / test-bitsocial-cli (ubuntu-latest)

Cannot find module '@pkcprotocol/pkc-js/client' or its corresponding type declarations.

Check failure on line 3 in src/cli/base-command.ts

View workflow job for this annotation

GitHub Actions / test-bitsocial-cli (macos-latest)

Cannot find module '@pkcprotocol/pkc-js/client' or its corresponding type declarations.

Check failure on line 3 in src/cli/base-command.ts

View workflow job for this annotation

GitHub Actions / test-bitsocial-cli (windows-latest)

Cannot find module '@pkcprotocol/pkc-js/client' or its corresponding type declarations.
import { PKCLogger, setupDebugLogger, type PKCLoggerType } from "../util.js";
type PKCInstance = Awaited<ReturnType<typeof PKC>>;
type PKCConnectOverride = (pkcRpcUrl: string) => Promise<PKCInstance>;
Expand Down Expand Up @@ -31,7 +31,7 @@
}
const pkc = await PKC({ pkcRpcClientsOptions: [pkcRpcUrl] });
const errors: Error[] = [];
pkc.on("error", (err) => {

Check failure on line 34 in src/cli/base-command.ts

View workflow job for this annotation

GitHub Actions / test-bitsocial-cli (ubuntu-latest)

Parameter 'err' implicitly has an 'any' type.

Check failure on line 34 in src/cli/base-command.ts

View workflow job for this annotation

GitHub Actions / test-bitsocial-cli (macos-latest)

Parameter 'err' implicitly has an 'any' type.

Check failure on line 34 in src/cli/base-command.ts

View workflow job for this annotation

GitHub Actions / test-bitsocial-cli (windows-latest)

Parameter 'err' implicitly has an 'any' type.
errors.push(err);
});
await new Promise<void>((resolve, reject) => {
Expand Down
Loading