@symerian/symi 3.4.9 → 3.4.11
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/build-info.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
8b14080ad8e169a81e359ecab3f2ed26936492130bc11ad4e5c006148101f888
|
|
@@ -482,6 +482,22 @@ body {
|
|
|
482
482
|
/* ── Agent Status Orb ─────────────────────────────────────────────── */
|
|
483
483
|
.agent-status-panel {
|
|
484
484
|
text-align: center;
|
|
485
|
+
/* Override .glass-panel so the orb floats without a card background. */
|
|
486
|
+
background: transparent;
|
|
487
|
+
backdrop-filter: none;
|
|
488
|
+
-webkit-backdrop-filter: none;
|
|
489
|
+
border: none;
|
|
490
|
+
box-shadow: none;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.agent-status-panel:hover {
|
|
494
|
+
border: none;
|
|
495
|
+
box-shadow: none;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
.agent-status-panel::before,
|
|
499
|
+
.agent-status-panel::after {
|
|
500
|
+
display: none;
|
|
485
501
|
}
|
|
486
502
|
|
|
487
503
|
.aso-orb-wrap {
|
|
@@ -3878,6 +3894,22 @@ body {
|
|
|
3878
3894
|
display: flex;
|
|
3879
3895
|
flex-direction: column;
|
|
3880
3896
|
gap: 8px;
|
|
3897
|
+
/* Override .glass-panel so the connections list floats without a card background. */
|
|
3898
|
+
background: transparent;
|
|
3899
|
+
backdrop-filter: none;
|
|
3900
|
+
-webkit-backdrop-filter: none;
|
|
3901
|
+
border: none;
|
|
3902
|
+
box-shadow: none;
|
|
3903
|
+
}
|
|
3904
|
+
|
|
3905
|
+
.connections-panel:hover {
|
|
3906
|
+
border: none;
|
|
3907
|
+
box-shadow: none;
|
|
3908
|
+
}
|
|
3909
|
+
|
|
3910
|
+
.connections-panel::before,
|
|
3911
|
+
.connections-panel::after {
|
|
3912
|
+
display: none;
|
|
3881
3913
|
}
|
|
3882
3914
|
|
|
3883
3915
|
.conn-btn {
|
package/dist/plugin-sdk/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import path from "node:path";
|
|
|
3
3
|
import fs, { constants, readFileSync } from "node:fs";
|
|
4
4
|
import os from "node:os";
|
|
5
5
|
import { Logger } from "tslog";
|
|
6
|
-
import
|
|
6
|
+
import JSON5 from "json5";
|
|
7
7
|
import chalk, { Chalk } from "chalk";
|
|
8
8
|
import fs$1, { mkdtemp, rm } from "node:fs/promises";
|
|
9
9
|
import { z } from "zod";
|
|
@@ -473,7 +473,7 @@ function readLoggingConfig() {
|
|
|
473
473
|
try {
|
|
474
474
|
if (!fs.existsSync(configPath)) return;
|
|
475
475
|
const raw = fs.readFileSync(configPath, "utf-8");
|
|
476
|
-
const logging =
|
|
476
|
+
const logging = JSON5.parse(raw)?.logging;
|
|
477
477
|
if (!logging || typeof logging !== "object" || Array.isArray(logging)) return;
|
|
478
478
|
return logging;
|
|
479
479
|
} catch {
|
|
@@ -7320,7 +7320,7 @@ function safeRealpath(target) {
|
|
|
7320
7320
|
}
|
|
7321
7321
|
const defaultResolver = {
|
|
7322
7322
|
readFile: (p) => fs.readFileSync(p, "utf-8"),
|
|
7323
|
-
parseJson: (raw) =>
|
|
7323
|
+
parseJson: (raw) => JSON5.parse(raw)
|
|
7324
7324
|
};
|
|
7325
7325
|
/**
|
|
7326
7326
|
* Resolves all $include directives in a parsed config object.
|
|
@@ -10551,7 +10551,7 @@ function resolveConfigPathForDeps(deps) {
|
|
|
10551
10551
|
function normalizeDeps(overrides = {}) {
|
|
10552
10552
|
return {
|
|
10553
10553
|
fs: overrides.fs ?? fs,
|
|
10554
|
-
json5: overrides.json5 ??
|
|
10554
|
+
json5: overrides.json5 ?? JSON5,
|
|
10555
10555
|
env: overrides.env ?? process.env,
|
|
10556
10556
|
homedir: overrides.homedir ?? (() => resolveRequiredHomeDir(overrides.env ?? process.env, os.homedir)),
|
|
10557
10557
|
configPath: overrides.configPath ?? "",
|
|
@@ -10562,11 +10562,11 @@ function maybeLoadDotEnvForConfig(env) {
|
|
|
10562
10562
|
if (env !== process.env) return;
|
|
10563
10563
|
loadDotEnv({ quiet: true });
|
|
10564
10564
|
}
|
|
10565
|
-
function parseConfigJson5(raw, json5
|
|
10565
|
+
function parseConfigJson5(raw, json5 = JSON5) {
|
|
10566
10566
|
try {
|
|
10567
10567
|
return {
|
|
10568
10568
|
ok: true,
|
|
10569
|
-
parsed: json5
|
|
10569
|
+
parsed: json5.parse(raw)
|
|
10570
10570
|
};
|
|
10571
10571
|
} catch (err) {
|
|
10572
10572
|
return {
|