@work-rjkashyap/unified-ui 0.2.0 → 0.2.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/CHANGELOG.md +13 -1
- package/bin/cli.mjs +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,11 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
### Planned
|
|
8
8
|
- Migration guide — mapping from legacy `--ds-*` tokens to new plain `--*` tokens
|
|
9
|
-
- CI/CD pipeline for automated publishing on git tags
|
|
10
9
|
- `UnifiedUIProvider` component for optional auto CSS injection
|
|
11
10
|
- Component tests with Vitest + Testing Library
|
|
12
11
|
---
|
|
13
12
|
|
|
13
|
+
## [0.2.1] — 2026-03-06
|
|
14
|
+
### Fixed
|
|
15
|
+
- **CLI: Registry URL** — Fixed the hardcoded registry base URL in the CLI from `unified-ui.vercel.app` (a different, unrelated Vercel project) to the correct `unified-ui-rajeshwar.vercel.app`. This caused `npx @work-rjkashyap/unified-ui add <component>` to fail with a 404 error for all users of the published npm package.
|
|
16
|
+
- **CLI: `$schema` URL** — Updated the default `$schema` reference in `unified-ui.json` config to point to the correct registry domain.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- **Homepage text sizes** — Increased font sizes across all homepage sections (Hero, Features, Showcase, Testimonials/Why, CTA, Footer) for improved readability. Bumped headings, descriptions, card titles, labels, code blocks, and stat numbers up by roughly one Tailwind size step (e.g. `text-[10px]` → `text-xs`, `text-xs` → `text-sm`, `text-sm` → `text-base`).
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
- **Automated changelog generation** — Added GitHub Actions workflow (`.github/workflows/changelog.yml`) that auto-generates changelog entries from Conventional Commit messages on every push to `main`. Uses `git-cliff` to parse `feat:`, `fix:`, `refactor:`, `chore:` prefixes and appends to `CHANGELOG.md`.
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
14
26
|
## [0.2.0] — 2026-03-05
|
|
15
27
|
### Added
|
|
16
28
|
#### 40 New Components
|
package/bin/cli.mjs
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
// npx @work-rjkashyap/unified-ui init
|
|
14
14
|
//
|
|
15
15
|
// Components are fetched from the registry at:
|
|
16
|
-
// https://unified-ui.vercel.app/r/<name>.json
|
|
16
|
+
// https://unified-ui-rajeshwar.vercel.app/r/<name>.json
|
|
17
17
|
//
|
|
18
18
|
// Files are written into the user's project at:
|
|
19
19
|
// src/components/ui/<component>.tsx
|
|
@@ -35,12 +35,12 @@ import { createInterface } from "node:readline";
|
|
|
35
35
|
|
|
36
36
|
const REGISTRY_BASE_URL =
|
|
37
37
|
process.env.UNIFIED_UI_REGISTRY_URL ||
|
|
38
|
-
"https://unified-ui.vercel.app/r";
|
|
38
|
+
"https://unified-ui-rajeshwar.vercel.app/r";
|
|
39
39
|
|
|
40
40
|
const CONFIG_FILE = "unified-ui.json";
|
|
41
41
|
|
|
42
42
|
const DEFAULT_CONFIG = {
|
|
43
|
-
$schema: "https://unified-ui.vercel.app/r/schema/config.json",
|
|
43
|
+
$schema: "https://unified-ui-rajeshwar.vercel.app/r/schema/config.json",
|
|
44
44
|
srcDir: "src",
|
|
45
45
|
aliases: {
|
|
46
46
|
components: "@/components/ui",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@work-rjkashyap/unified-ui",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "A scalable, token-driven React design system with 75+ components, built with Tailwind CSS v4, Radix UI, and Framer Motion.",
|
|
5
5
|
"author": "Rajeshwar Kashyap",
|
|
6
6
|
"license": "MIT",
|