@symerian/symi 3.4.8 → 3.4.10
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
|
+
1feb7da2e24648ee0add5ba98f10550a52a85ca164c6f95554f97af4eed71496
|
|
@@ -167,22 +167,24 @@ body {
|
|
|
167
167
|
display: flex;
|
|
168
168
|
align-items: center;
|
|
169
169
|
gap: 14px;
|
|
170
|
-
padding: 18px
|
|
170
|
+
padding: 18px 4px;
|
|
171
171
|
overflow: visible;
|
|
172
|
+
/* Override .glass-panel so the brand floats without a card background. */
|
|
173
|
+
background: transparent;
|
|
174
|
+
backdrop-filter: none;
|
|
175
|
+
-webkit-backdrop-filter: none;
|
|
176
|
+
border: none;
|
|
177
|
+
box-shadow: none;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.brand-panel:hover {
|
|
181
|
+
border: none;
|
|
182
|
+
box-shadow: none;
|
|
172
183
|
}
|
|
173
184
|
|
|
185
|
+
.brand-panel::before,
|
|
174
186
|
.brand-panel::after {
|
|
175
|
-
|
|
176
|
-
position: absolute;
|
|
177
|
-
inset: 0;
|
|
178
|
-
border-radius: 14px;
|
|
179
|
-
background: linear-gradient(
|
|
180
|
-
120deg,
|
|
181
|
-
rgba(0, 212, 255, 0.06) 0%,
|
|
182
|
-
rgba(139, 92, 246, 0.06) 50%,
|
|
183
|
-
rgba(0, 212, 255, 0.03) 100%
|
|
184
|
-
);
|
|
185
|
-
pointer-events: none;
|
|
187
|
+
display: none;
|
|
186
188
|
}
|
|
187
189
|
|
|
188
190
|
.brand-mark {
|
|
@@ -480,6 +482,22 @@ body {
|
|
|
480
482
|
/* ── Agent Status Orb ─────────────────────────────────────────────── */
|
|
481
483
|
.agent-status-panel {
|
|
482
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;
|
|
483
501
|
}
|
|
484
502
|
|
|
485
503
|
.aso-orb-wrap {
|
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 {
|