Skip to content

Commit 20b83b7

Browse files
Yonomclaude
andcommitted
feat: Extract react-ui package from assistant-ui monorepo
This repository contains the react-ui package extracted from the main assistant-ui monorepo at commit 30c9f927 (the last commit before react-ui was removed from the main repository). The setup includes: - react-ui package (v0.1.8) - Pre-styled React components - tsbuildutils - Internal build utilities - tailwindcss-transformer - Required dependency - tsconfig - TypeScript configuration Dependencies have been updated to use npm versions of @assistant-ui/react and @assistant-ui/react-markdown instead of workspace versions. 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 268c5aa commit 20b83b7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+11672
-1
lines changed

.changeset/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/config@3.0.1/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "public",
8+
"baseBranch": "main",
9+
"privatePackages": { "version": false },
10+
"updateInternalDependencies": "minor"
11+
}

.changeset/free-cows-appear.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"assistant-ui": patch
3+
---
4+
5+
fix: init command does not work on empty folders

.changeset/public-clouds-train.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"assistant-stream": patch
3+
"@assistant-ui/react": patch
4+
---
5+
6+
refactor: merge setResult and setArtifact to setResponse
7.52 MB
Loading

.github/assets/components.png

114 KB
Loading

.github/assets/growth.png

16.2 KB
Loading

.github/assets/header.svg

Lines changed: 14 additions & 0 deletions
Loading

.github/assets/perplexity.gif

4.67 MB
Loading

.github/workflows/changeset.yaml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
name: Changesets
2+
on:
3+
push:
4+
branches:
5+
- main
6+
7+
concurrency: ${{ github.workflow }}-${{ github.ref }}
8+
9+
permissions:
10+
id-token: write
11+
contents: write
12+
pull-requests: write
13+
14+
env:
15+
CI: true
16+
17+
jobs:
18+
version:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout code repository
22+
uses: actions/checkout@v4
23+
with:
24+
fetch-depth: 1
25+
26+
- name: Install pnpm
27+
uses: pnpm/action-setup@v4
28+
29+
- name: Setup node.js
30+
uses: actions/setup-node@v4
31+
with:
32+
node-version: 22
33+
cache: "pnpm"
34+
35+
- name: Cache turbo build setup
36+
uses: actions/cache@v4
37+
with:
38+
path: .turbo
39+
key: ${{ runner.os }}-turbo-${{ github.sha }}
40+
restore-keys: |
41+
${{ runner.os }}-turbo-
42+
43+
- name: Install dependencies
44+
run: pnpm install --frozen-lockfile
45+
46+
- name: Create and publish versions
47+
uses: changesets/action@v1
48+
with:
49+
commit: "chore: update versions"
50+
title: "chore: update versions"
51+
version: pnpm ci:version
52+
publish: pnpm ci:publish
53+
env:
54+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
55+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)