docs: Update repo references for new Github org (#476)

This commit is contained in:
Liam Don
2026-01-11 12:35:22 -08:00
committed by GitHub
parent 17d7079cd4
commit 6605a5fb02
12 changed files with 16 additions and 15 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ for reviews. Feature suggestions are subject to discussion via issues.
## Code style
Reference existing [AGENTS.md](https://github.com/sst/opentui/blob/main/AGENTS.md) or project conventions if applicable.
Reference existing [AGENTS.md](https://github.com/anomalyco/opentui/blob/main/AGENTS.md) or project conventions if applicable.
## Code of conduct
+3 -3
View File
@@ -2,7 +2,7 @@
<div align="center">
<a href="https://www.npmjs.com/package/@opentui/core"><img alt="npm" src="https://img.shields.io/npm/v/@opentui/core?style=flat-square" /></a>
<a href="https://github.com/sst/opentui/actions/workflows/build-core.yml"><img alt="Build status" src="https://img.shields.io/github/actions/workflow/status/sst/opentui/build-core.yml?style=flat-square&branch=main" /></a>
<a href="https://github.com/anomalyco/opentui/actions/workflows/build-core.yml"><img alt="Build status" src="https://img.shields.io/github/actions/workflow/status/anomalyco/opentui/build-core.yml?style=flat-square&branch=main" /></a>
<a href="https://github.com/msmps/awesome-opentui"><img alt="awesome opentui list" src="https://awesome.re/badge-flat.svg" /></a>
</div>
@@ -39,12 +39,12 @@ You can quickly try out OpenTUI examples without cloning the repository:
**For macOS, Linux, WSL, Git Bash:**
```bash
curl -fsSL https://raw.githubusercontent.com/sst/opentui/main/packages/core/src/examples/install.sh | sh
curl -fsSL https://raw.githubusercontent.com/anomalyco/opentui/main/packages/core/src/examples/install.sh | sh
```
**For Windows (PowerShell/CMD):**
Download the latest release directly from [GitHub Releases](https://github.com/sst/opentui/releases/latest)
Download the latest release directly from [GitHub Releases](https://github.com/anomalyco/opentui/releases/latest)
## Running Examples (from the repo root)
+1 -1
View File
@@ -8,7 +8,7 @@
## Setup
```bash
git clone https://github.com/sst/opentui.git
git clone https://github.com/anomalyco/opentui.git
cd opentui
bun install
```
+1 -1
View File
@@ -3,7 +3,7 @@
"description": "OpenTUI is a TypeScript library for building terminal user interfaces (TUIs)",
"repository": {
"type": "git",
"url": "https://github.com/sst/opentui",
"url": "https://github.com/anomalyco/opentui",
"directory": "packages/core"
},
"types": "src/index.ts",
+1 -1
View File
@@ -92,7 +92,7 @@ export class BoxRenderable extends Renderable {
}
private initializeBorder(): void {
// https://github.com/sst/opentui/issues/186
// https://github.com/anomalyco/opentui/issues/186
// Solid-js reconciler does not pass props to constructor on init,
// so we need to initialize the border when supporting properties are set.
// borderStyle, borderColor, focusedBorderColor
@@ -6,7 +6,7 @@ import { createTestRenderer } from "../testing/test-renderer"
// Tests avoid actually outputting to the terminal during test runs,
// to not mess up the terminal state.
// What actually gets written can be tested properly when
// https://github.com/sst/opentui/pull/238 is merged.
// https://github.com/anomalyco/opentui/pull/238 is merged.
describe("useMouse configuration", () => {
test("useMouse: true sets renderer.useMouse to true", async () => {
const { renderer } = await createTestRenderer({
+1 -1
View File
@@ -1,6 +1,6 @@
# @opentui/react
A React renderer for building terminal user interfaces using [OpenTUI core](https://github.com/sst/opentui). Create rich, interactive console applications with familiar React patterns and components.
A React renderer for building terminal user interfaces using [OpenTUI core](https://github.com/anomalyco/opentui). Create rich, interactive console applications with familiar React patterns and components.
## Installation
+1 -1
View File
@@ -5,7 +5,7 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sst/opentui",
"url": "https://github.com/anomalyco/opentui",
"directory": "packages/react"
},
"module": "src/index.ts",
+2 -1
View File
@@ -57,7 +57,8 @@ describe("Link Rendering Tests", () => {
test("should render link inside text with other elements", async () => {
testSetup = await testRender(
<text>
Check out <a href="https://github.com/sst/opentui">GitHub</a> and <a href="https://opentui.com">our website</a>
Check out <a href="https://github.com/anomalyco/opentui">GitHub</a> and{" "}
<a href="https://opentui.com">our website</a>
</text>,
{
width: 60,
+2 -2
View File
@@ -1,6 +1,6 @@
# @opentui/solid
Solid.js support for [OpenTUI](https://github.com/sst/opentui).
Solid.js support for [OpenTUI](https://github.com/anomalyco/opentui).
## Installation
@@ -37,7 +37,7 @@ render(() => <text>Hello, World!</text>)
4. Run with `bun index.tsx`.
5. To build use [Bun.build](https://bun.com/docs/bundler) ([source](https://github.com/sst/opentui/issues/122)):
5. To build use [Bun.build](https://bun.com/docs/bundler) ([source](https://github.com/anomalyco/opentui/issues/122)):
```ts
import solidPlugin from "@opentui/solid/bun-plugin"
+1 -1
View File
@@ -4,7 +4,7 @@
"description": "SolidJS renderer for OpenTUI",
"repository": {
"type": "git",
"url": "https://github.com/sst/opentui",
"url": "https://github.com/anomalyco/opentui",
"directory": "packages/solid"
},
"module": "index.ts",
+1 -1
View File
@@ -62,7 +62,7 @@ describe("Link Rendering Tests", () => {
testSetup = await testRender(
() => (
<text>
Check out <a href="https://github.com/sst/opentui">GitHub</a> and{" "}
Check out <a href="https://github.com/anomalyco/opentui">GitHub</a> and{" "}
<a href="https://opentui.com">our website</a>
</text>
),