@yawlabs/mcph 0.47.3 → 0.47.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +5 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1650,7 +1650,7 @@ function selectFlakyNamespaces(entries, limit) {
|
|
|
1650
1650
|
}
|
|
1651
1651
|
|
|
1652
1652
|
// src/doctor-cmd.ts
|
|
1653
|
-
var VERSION = true ? "0.47.
|
|
1653
|
+
var VERSION = true ? "0.47.4" : "dev";
|
|
1654
1654
|
async function runDoctor(opts = {}) {
|
|
1655
1655
|
if (opts.json) return runDoctorJson(opts);
|
|
1656
1656
|
const lines = [];
|
|
@@ -4971,7 +4971,7 @@ function categorizeSpawnError(err) {
|
|
|
4971
4971
|
}
|
|
4972
4972
|
async function connectToUpstream(config, onDisconnect, onListChanged) {
|
|
4973
4973
|
const client = new Client(
|
|
4974
|
-
{ name: "mcph", version: true ? "0.47.
|
|
4974
|
+
{ name: "mcph", version: true ? "0.47.4" : "dev" },
|
|
4975
4975
|
{ capabilities: {} }
|
|
4976
4976
|
);
|
|
4977
4977
|
let transport;
|
|
@@ -5279,7 +5279,7 @@ var ConnectServer = class _ConnectServer {
|
|
|
5279
5279
|
this.apiUrl = apiUrl5;
|
|
5280
5280
|
this.token = token5;
|
|
5281
5281
|
this.server = new Server(
|
|
5282
|
-
{ name: "mcph", version: true ? "0.47.
|
|
5282
|
+
{ name: "mcph", version: true ? "0.47.4" : "dev" },
|
|
5283
5283
|
{
|
|
5284
5284
|
capabilities: {
|
|
5285
5285
|
tools: { listChanged: true },
|
|
@@ -7640,7 +7640,7 @@ Or re-run with --run to upgrade in place.`);
|
|
|
7640
7640
|
return { exitCode: 3, lines };
|
|
7641
7641
|
}
|
|
7642
7642
|
function readCurrentVersion() {
|
|
7643
|
-
return true ? "0.47.
|
|
7643
|
+
return true ? "0.47.4" : "dev";
|
|
7644
7644
|
}
|
|
7645
7645
|
|
|
7646
7646
|
// src/index.ts
|
|
@@ -7808,7 +7808,7 @@ if (subcommand === "compliance") {
|
|
|
7808
7808
|
`);
|
|
7809
7809
|
process.exit(0);
|
|
7810
7810
|
} else if (subcommand === "--version" || subcommand === "-V") {
|
|
7811
|
-
process.stdout.write(`mcph ${true ? "0.47.
|
|
7811
|
+
process.stdout.write(`mcph ${true ? "0.47.4" : "dev"}
|
|
7812
7812
|
`);
|
|
7813
7813
|
process.exit(0);
|
|
7814
7814
|
} else if (subcommand && !subcommand.startsWith("-")) {
|
package/package.json
CHANGED