Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .changeset/README.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/config.json

This file was deleted.

41 changes: 0 additions & 41 deletions .github/workflows/release.yml

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/sync-components.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ jobs:

- name: Check for registry drift
run: |
# Check only registry.json and templates, exclude build-info.json (which changes every build)
if git diff --quiet web/public/registry.json web/public/templates/ web/public/tailwind.css; then
# Check registry.json and generated shadcn registry files
if git diff --quiet packages/components/registry.json web/public/r/; then
echo "✅ Registry is in sync"
else
echo "❌ Registry out of sync! Generated files differ from committed files."
Expand All @@ -52,10 +52,10 @@ jobs:
echo " pnpm --filter @baselayer/components build"
echo ""
echo "Changed files:"
git diff --name-only web/public/registry.json web/public/templates/ web/public/tailwind.css
git diff --name-only packages/components/registry.json web/public/r/
echo ""
echo "Diff:"
git diff web/public/registry.json web/public/templates/ web/public/tailwind.css
git diff packages/components/registry.json web/public/r/
exit 1
fi

Expand Down
15 changes: 5 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,19 @@
{
"name": "baselayer",
"private": true,
"version": "1.9.0",
"version": "2.1.0",
"description": "Beautiful, accessible, and AI optimized React components for the web.",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"clean": "turbo clean",
"type-check": "turbo type-check",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"changeset:status": "changeset status",
"release": "pnpm build && pnpm --filter @baselayer-dev/mcp build && pnpm changeset:publish"
"type-check": "turbo type-check"
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@changesets/cli": "^2.29.5",
"turbo": "^2.5.4"
"@biomejs/biome": "2.2.5",
"shadcn": "3.4.0",
"turbo": "^2.5.8"
},
"packageManager": "pnpm@10.12.1",
"engines": {
Expand Down
10 changes: 5 additions & 5 deletions packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "@baselayer/components",
"version": "2.0.3",
"version": "2.1.0",
"private": true,
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"files": [
"src",
"templates"
"src"
],
"scripts": {
"build": "tsc && tsx scripts/gen-registry.ts",
"build": "tsc && pnpm generate:registry && pnpm registry:build",
"dev": "tsc --watch",
"generate:registry": "tsx scripts/gen-registry.ts"
"generate:registry": "tsx scripts/gen-registry-json.ts",
"registry:build": "shadcn build --cwd . --output ../../web/public/r"
},
"dependencies": {
"@baselayer/registry": "workspace:*",
Expand Down
Loading
Loading