@zyncat/ui 0.13.0 → 0.13.1
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/cli.js
CHANGED
|
@@ -1575,7 +1575,7 @@ async function planInstall(cwd, targetPkg, flags, version2) {
|
|
|
1575
1575
|
const hasPackage = PACKAGE in deps;
|
|
1576
1576
|
const onDisk = installedVersion(cwd, PACKAGE);
|
|
1577
1577
|
const outdated = onDisk !== null && isOlder(onDisk, version2);
|
|
1578
|
-
if (!hasPackage || outdated) specs.push(
|
|
1578
|
+
if (!hasPackage || outdated) specs.push(`${PACKAGE}@^${version2}`);
|
|
1579
1579
|
if (!("react" in deps)) {
|
|
1580
1580
|
specs.push("react", "react-dom");
|
|
1581
1581
|
} else {
|
|
@@ -1678,7 +1678,7 @@ async function alignVersion(pm, cwd, version2) {
|
|
|
1678
1678
|
const onDisk = installedVersion(cwd, PACKAGE);
|
|
1679
1679
|
if (!onDisk || !isOlder(onDisk, version2)) return;
|
|
1680
1680
|
log.warn(
|
|
1681
|
-
`${PACKAGE} ${onDisk}
|
|
1681
|
+
`${PACKAGE} ${onDisk} landed, older than the CLI (${version2}) - upgrading so the skill and MCP server match.`
|
|
1682
1682
|
);
|
|
1683
1683
|
const upgraded = await installPhase(pm, { specs: [`${PACKAGE}@^${version2}`], restore: false, reactNote: null }, cwd);
|
|
1684
1684
|
if (upgraded) log.message(upgraded.line, { symbol: check });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zyncat/ui",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.1",
|
|
4
4
|
"packageManager": "pnpm@11.13.0",
|
|
5
5
|
"description": "A React 19 design system: accessible, animated UI components built on a small, closed CSS design-token vocabulary. No Tailwind, no CSS-in-JS.",
|
|
6
6
|
"keywords": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @zyncat/ui component index
|
|
2
2
|
|
|
3
|
-
Generated from @zyncat/ui v0.13.
|
|
3
|
+
Generated from @zyncat/ui v0.13.1 by `pnpm sync:skill` - do not edit by hand.
|
|
4
4
|
If node_modules/@zyncat/ui/package.json shows a DIFFERENT version, this index is stale:
|
|
5
5
|
trust the get_component MCP tool and re-run `npx zyncat-ui init` to refresh the skill.
|
|
6
6
|
|