We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f42629 commit f4e6f4dCopy full SHA for f4e6f4d
cli/src/index.ts
@@ -18,7 +18,6 @@ import {
18
validLogLevels,
19
} from "./client/index.js";
20
import { handleError } from "./error-handler.js";
21
-import { packageInfo } from "./package-info.js";
22
import { createTransport, TransportOptions } from "./transport.js";
23
24
type Args = {
@@ -63,8 +62,8 @@ async function callMethod(args: Args): Promise<void> {
63
62
const transportOptions = createTransportOptions(args.target);
64
const transport = createTransport(transportOptions);
65
const client = new Client({
66
- name: packageInfo.name,
67
- version: packageInfo.version,
+ name: "inspector-cli",
+ version: "0.5.1",
68
});
69
70
try {
cli/src/package-info.ts
0 commit comments