refactor: migrate legacy wire namespace to wrn
Quality / quality (ubuntu-latest) (push) Failing after 9m49s
Quality / quality (windows-latest) (push) Canceled after 0s

This commit is contained in:
2026-08-12 18:51:15 +05:30
parent ec23dd4c93
commit 2c960fc1dc
488 changed files with 27306 additions and 19063 deletions
+1 -1
View File
@@ -130,7 +130,7 @@ for (const directory of packageDirectories) {
if (uiComponentNames.has(match[1])) usedUiComponents.add(match[1]);
}
try {
compiler.compileWireFile(source);
compiler.compileWrnFile(source);
} catch (error) {
componentFailures.push(
`${component}: ${error instanceof Error ? error.message : String(error)}`,
+19 -19
View File
@@ -21,21 +21,21 @@ const typography = {
};
const layouts = {
NarrowContainer: "wire-container wire-container--narrow",
WideContainer: "wire-container wire-container--wide",
FullBleed: "wire-full-bleed",
Flex: "wire-flex",
AutoGrid: "wire-auto-grid",
SplitLayout: "wire-split-layout",
SidebarLayout: "wire-sidebar-layout",
StickyLayout: "wire-sticky-layout",
AspectRatio: "wire-aspect-ratio",
Panel: "wire-panel",
Surface: "wire-surface",
Well: "wire-well",
InsetPanel: "wire-inset-panel",
ScrollArea: "wire-scroll-area",
Sticky: "wire-sticky",
NarrowContainer: "wrn-container wrn-container--narrow",
WideContainer: "wrn-container wrn-container--wide",
FullBleed: "wrn-full-bleed",
Flex: "wrn-flex",
AutoGrid: "wrn-auto-grid",
SplitLayout: "wrn-split-layout",
SidebarLayout: "wrn-sidebar-layout",
StickyLayout: "wrn-sticky-layout",
AspectRatio: "wrn-aspect-ratio",
Panel: "wrn-panel",
Surface: "wrn-surface",
Well: "wrn-well",
InsetPanel: "wrn-inset-panel",
ScrollArea: "wrn-scroll-area",
Sticky: "wrn-sticky",
};
const buttons = {
@@ -103,7 +103,7 @@ for (const [name, variant] of Object.entries(typography)) {
align = "start"
class = ""
}
view { <div class="wire-type wire-type--${variant} wire-text--{align} ${name === "MutedText" ? "wire-muted" : ""} {class}">{text}<slot /></div> }
view { <div class="wrn-type wrn-type--${variant} wrn-text--{align} ${name === "MutedText" ? "wrn-muted" : ""} {class}">{text}<slot /></div> }
}`,
);
}
@@ -130,7 +130,7 @@ for (const [name, variant] of Object.entries(buttons)) {
disabled = false
class = ""
}
view { <button type="{type}" disabled="{disabled}" class="wire-btn wire-btn--${variant} {class}">{label}<slot /></button> }
view { <button type="{type}" disabled="{disabled}" class="wrn-btn wrn-btn--${variant} {class}">{label}<slot /></button> }
}`,
);
}
@@ -145,7 +145,7 @@ for (const name of cards) {
href = ""
class = ""
}
view { <article class="wire-card wire-catalog-card wire-catalog-card--${name.replace(/Card$/, "").toLowerCase()} {class}"><h3 data-show="title">{title}</h3><p data-show="description">{description}</p><slot /><a data-show="href" href="{href}" class="wire-catalog-card__link"><span class="wire-visually-hidden">Open {title}</span></a></article> }
view { <article class="wrn-card wrn-catalog-card wrn-catalog-card--${name.replace(/Card$/, "").toLowerCase()} {class}"><h3 data-show="title">{title}</h3><p data-show="description">{description}</p><slot /><a data-show="href" href="{href}" class="wrn-catalog-card__link"><span class="wrn-visually-hidden">Open {title}</span></a></article> }
}`,
);
}
@@ -159,7 +159,7 @@ for (const name of badges) {
variant = "default"
class = ""
}
view { <span class="wire-badge wire-badge--{variant} wire-catalog-badge wire-catalog-badge--${name.toLowerCase()} {class}">{label}<slot /></span> }
view { <span class="wrn-badge wrn-badge--{variant} wrn-catalog-badge wrn-catalog-badge--${name.toLowerCase()} {class}">{label}<slot /></span> }
}`,
);
}
+2 -2
View File
@@ -20,8 +20,8 @@ for _ in $(seq 1 60); do
sleep 2
done
export WIREFW_PG_URL="postgres://wire:wire@localhost:5433/wire_test"
export WIREFW_MYSQL_URL="mysql://wire:wire@localhost:3307/wire_test"
export WRNEXUS_PG_URL="postgres://wrn:wrn@localhost:5433/wrn_test"
export WRNEXUS_MYSQL_URL="mysql://wrn:wrn@localhost:3307/wrn_test"
echo "Running live DB tests…"
bun test packages/db/test/live-db.test.ts
+1 -1
View File
@@ -94,7 +94,7 @@ for (const name of ["security", "cache", "image", "observability", "benchmark"])
}
check(
"context-aware URL sanitizer is wired into compiler",
"context-aware URL sanitizer is connected into compiler",
has("packages/compiler/src/codegen.ts", "sanitizeUrlAttribute"),
);
check(