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
6 changes: 6 additions & 0 deletions .changeset/all-files-film.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"jsrepo": patch
---

v3 initial beta release

9 changes: 9 additions & 0 deletions .changeset/wacky-suns-go.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
"@jsrepo/transform-prettier": patch
"@jsrepo/transform-biome": patch
"@jsrepo/shadcn": patch
"@jsrepo/mcp": patch
---

initial beta release

38 changes: 38 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Publish

on:
push:
branches:
- next

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
release:
name: Build & Publish Release
if: github.repository == 'jsrepojs/jsrepo'
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: pnpm

- name: Install dependencies
run: pnpm install

- name: Create Release Pull Request or Publish
id: changesets
uses: changesets/action@v1
with:
commit: "chore(release): version package"
title: "chore(release): version package"
version: pnpm changeset:version
publish: pnpm ci:release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_ENV: production
4 changes: 2 additions & 2 deletions apps/docs/src/components/feature-tabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ function FeatureTabsTrigger({
<div
data-state={activeTab === value ? "active" : "inactive"}
className={cn(
"hidden md:block border-border group bg-card px-6 [--radix-accordion-content-height:137px] duration-300",
"hidden md:block border-border group bg-fd-card px-6 [--radix-accordion-content-height:137px] duration-300",
"h-0 data-[state=inactive]:py-0 data-[state=active]:py-4 data-[state=inactive]:h-0 data-[state=active]:h-[137px] data-[state=inactive]:animate-accordion-up data-[state=active]:animate-accordion-down"
)}
>
Expand All @@ -140,7 +140,7 @@ function FeatureTabsContent({
return activeTab !== value ? (
<></>
) : (
<div className={cn("border border-t-0 md:border-l-0 md:border-y-0 w-full bg-card", className)} {...props}>
<div className={cn("border border-t-0 md:border-l-0 md:border-y-0 w-full bg-fd-card", className)} {...props}>
{children}
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/components/ui/terminal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ export const Terminal = ({
data-slot="terminal"
ref={containerRef}
className={cn(
"border-border bg-card z-0 h-full max-h-[400px] w-full max-w-lg rounded-xl border",
"border-border bg-fd-card z-0 h-full max-h-[400px] w-full max-w-lg rounded-xl border",
className
)}
>
Expand Down