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
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

<div align="center">

[![Project Status](https://img.shields.io/badge/status-active%20development-orange?style=for-the-badge)](https://github.com/lyfie-app/luthor)
[![Stability](https://img.shields.io/badge/stable%20release-expected%20soon-blue?style=for-the-badge)](https://github.com/lyfie-app/luthor/releases)
[![Project Status](https://img.shields.io/badge/status-active%20development-orange?style=for-the-badge)](https://github.com/lyfie-org/luthor)
[![Stability](https://img.shields.io/badge/stable%20release-expected%20soon-blue?style=for-the-badge)](https://github.com/lyfie-org/luthor/releases)

[![Quality Gates](https://img.shields.io/github/actions/workflow/status/lyfie-app/luthor/quality-gates.yml?branch=main&label=quality%20gates&style=for-the-badge)](https://github.com/lyfie-app/luthor/actions/workflows/quality-gates.yml)
[![Publish Packages](https://img.shields.io/github/actions/workflow/status/lyfie-app/luthor/publish-packages.yml?branch=main&label=publish&style=for-the-badge)](https://github.com/lyfie-app/luthor/actions/workflows/publish-packages.yml)
[![GitHub Release](https://img.shields.io/github/v/release/lyfie-app/luthor?style=for-the-badge)](https://github.com/lyfie-app/luthor/releases)
[![Last Commit](https://img.shields.io/github/last-commit/lyfie-app/luthor/main?style=for-the-badge)](https://github.com/lyfie-app/luthor/commits/main)
[![Quality Gates](https://img.shields.io/github/actions/workflow/status/lyfie-app/luthor/quality-gates.yml?branch=main&label=quality%20gates&style=for-the-badge)](https://github.com/lyfie-org/luthor/actions/workflows/quality-gates.yml)
[![Publish Packages](https://img.shields.io/github/actions/workflow/status/lyfie-app/luthor/publish-packages.yml?branch=main&label=publish&style=for-the-badge)](https://github.com/lyfie-org/luthor/actions/workflows/publish-packages.yml)
[![GitHub Release](https://img.shields.io/github/v/release/lyfie-app/luthor?style=for-the-badge)](https://github.com/lyfie-org/luthor/releases)
[![Last Commit](https://img.shields.io/github/last-commit/lyfie-app/luthor/main?style=for-the-badge)](https://github.com/lyfie-org/luthor/commits/main)
[![NPM - @lyfie/luthor](https://img.shields.io/npm/v/@lyfie/luthor?style=for-the-badge&label=@lyfie/luthor)](https://www.npmjs.com/package/@lyfie/luthor)
[![NPM - @lyfie/luthor-headless](https://img.shields.io/npm/v/@lyfie/luthor-headless?style=for-the-badge&label=@lyfie/luthor-headless)](https://www.npmjs.com/package/@lyfie/luthor-headless)

Expand Down Expand Up @@ -65,7 +65,7 @@ pnpm add @lyfie/luthor-headless lexical @lexical/code @lexical/link @lexical/lis
- Website: [luthor.fyi](https://www.luthor.fyi)
- Docs home: [luthor.fyi/docs/getting-started](https://www.luthor.fyi/docs/getting-started)
- Live demo: [luthor.fyi/demo](https://www.luthor.fyi/demo)
- GitHub: [lyfie-app/luthor](https://github.com/lyfie-app/luthor)
- GitHub: [lyfie-app/luthor](https://github.com/lyfie-org/luthor)
- Sponsor: [github.com/sponsors/lyfie-app](https://github.com/sponsors/lyfie-app)

## :books: Documentation
Expand Down Expand Up @@ -126,7 +126,7 @@ pnpm run web:deploy:wsl
3. Run checks locally (`pnpm lint`, `pnpm build`, `pnpm test` where applicable).
4. Open a PR with a clear scope and screenshots/GIFs for UI changes.

Issue tracker: [github.com/lyfie-app/luthor/issues](https://github.com/lyfie-app/luthor/issues)
Issue tracker: [github.com/lyfie-org/luthor/issues](https://github.com/lyfie-org/luthor/issues)

## :chart_with_upwards_trend: Community

Expand All @@ -136,7 +136,7 @@ Issue tracker: [github.com/lyfie-app/luthor/issues](https://github.com/lyfie-app

### Contributors

[![Contributors](https://contrib.rocks/image?repo=lyfie-app/luthor)](https://github.com/lyfie-app/luthor/graphs/contributors)
[![Contributors](https://contrib.rocks/image?repo=lyfie-app/luthor)](https://github.com/lyfie-org/luthor/graphs/contributors)

## :page_facing_up: License

Expand Down
2 changes: 1 addition & 1 deletion apps/web/scripts/sync-docs.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const WEB_ROOT = process.cwd();
const REPO_ROOT = path.resolve(WEB_ROOT, '..', '..');
const SOURCE_DOCS_DIR = path.join(WEB_ROOT, 'src', 'content', 'docs');
const GENERATED_DOCS_INDEX_FILE = path.join(WEB_ROOT, 'src', 'data', 'docs-index.generated.ts');
const GITHUB_BLOB_BASE = 'https://github.com/lyfie-app/luthor/blob/main';
const GITHUB_BLOB_BASE = 'https://github.com/lyfie-org/luthor/blob/main';

function isMarkdownFile(filename) {
return filename.endsWith('.md') || filename.endsWith('.mdx');
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/config/site.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const SOCIAL_CARD_PATH = '/social-card.svg';

export const PRIMARY_PACKAGE_NAME = '@lyfie/luthor';
export const HEADLESS_PACKAGE_NAME = '@lyfie/luthor-headless';
export const GITHUB_URL = 'https://github.com/lyfie-app/luthor';
export const GITHUB_URL = 'https://github.com/lyfie-org/luthor';
export const NPM_URL = 'https://www.npmjs.com/package/@lyfie/luthor';
export const SPONSORS_URL = 'https://github.com/sponsors/lyfie-app';
export const REACT_PLAYGROUND_URL = 'https://stackblitz.com/edit/luthor-playground';
Expand Down
14 changes: 7 additions & 7 deletions packages/headless/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@

<div align="center">

[![Project Status](https://img.shields.io/badge/status-active%20development-orange?style=flat-square)](https://github.com/lyfie-app/luthor)
[![Stability](https://img.shields.io/badge/stable%20release-expected%20soon-blue?style=flat-square)](https://github.com/lyfie-app/luthor/releases)
[![Project Status](https://img.shields.io/badge/status-active%20development-orange?style=flat-square)](https://github.com/lyfie-org/luthor)
[![Stability](https://img.shields.io/badge/stable%20release-expected%20soon-blue?style=flat-square)](https://github.com/lyfie-org/luthor/releases)

[![npm version](https://img.shields.io/npm/v/@lyfie/luthor-headless?style=flat-square)](https://www.npmjs.com/package/@lyfie/luthor-headless)
[![npm downloads](https://img.shields.io/npm/dm/@lyfie/luthor-headless?style=flat-square)](https://www.npmjs.com/package/@lyfie/luthor-headless)
[![bundle size](https://img.shields.io/bundlephobia/minzip/@lyfie/luthor-headless?style=flat-square)](https://bundlephobia.com/package/@lyfie/luthor-headless)
[![types](https://img.shields.io/npm/types/@lyfie/luthor-headless?style=flat-square)](https://www.npmjs.com/package/@lyfie/luthor-headless)
[![license](https://img.shields.io/npm/l/@lyfie/luthor-headless?style=flat-square)](https://github.com/lyfie-app/luthor/blob/main/LICENSE)
[![last commit](https://img.shields.io/github/last-commit/lyfie-app/luthor/main?style=flat-square)](https://github.com/lyfie-app/luthor/commits/main)
[![license](https://img.shields.io/npm/l/@lyfie/luthor-headless?style=flat-square)](https://github.com/lyfie-org/luthor/blob/main/LICENSE)
[![last commit](https://img.shields.io/github/last-commit/lyfie-app/luthor/main?style=flat-square)](https://github.com/lyfie-org/luthor/commits/main)

</div>

Expand Down Expand Up @@ -88,9 +88,9 @@ export function Editor() {

- Docs landing: [luthor.fyi/docs/getting-started/luthor-headless](https://www.luthor.fyi/docs/getting-started/luthor-headless)
- Features docs: [luthor.fyi/docs/luthor-headless/features](https://www.luthor.fyi/docs/luthor-headless/features)
- User guide (repo): [documentation/user/headless/getting-started.md](https://github.com/lyfie-app/luthor/blob/main/documentation/user/headless/getting-started.md)
- Extensions/config: [documentation/user/headless/extensions-and-configuration.md](https://github.com/lyfie-app/luthor/blob/main/documentation/user/headless/extensions-and-configuration.md)
- Import/export: [documentation/user/headless/import-export.md](https://github.com/lyfie-app/luthor/blob/main/documentation/user/headless/import-export.md)
- User guide (repo): [documentation/user/headless/getting-started.md](https://github.com/lyfie-org/luthor/blob/main/documentation/user/headless/getting-started.md)
- Extensions/config: [documentation/user/headless/extensions-and-configuration.md](https://github.com/lyfie-org/luthor/blob/main/documentation/user/headless/extensions-and-configuration.md)
- Import/export: [documentation/user/headless/import-export.md](https://github.com/lyfie-org/luthor/blob/main/documentation/user/headless/import-export.md)

## Related Packages

Expand Down
6 changes: 3 additions & 3 deletions packages/headless/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lyfie-app/luthor.git"
"url": "https://github.com/lyfie-org/luthor.git"
},
"bugs": {
"url": "https://github.com/lyfie-app/luthor/issues"
"url": "https://github.com/lyfie-org/luthor/issues"
},
"homepage": "https://github.com/lyfie-app/luthor#readme",
"homepage": "https://github.com/lyfie-org/luthor#readme",
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
Expand Down
14 changes: 7 additions & 7 deletions packages/luthor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@

<div align="center">

[![Project Status](https://img.shields.io/badge/status-active%20development-orange?style=flat-square)](https://github.com/lyfie-app/luthor)
[![Stability](https://img.shields.io/badge/stable%20release-expected%20soon-blue?style=flat-square)](https://github.com/lyfie-app/luthor/releases)
[![Project Status](https://img.shields.io/badge/status-active%20development-orange?style=flat-square)](https://github.com/lyfie-org/luthor)
[![Stability](https://img.shields.io/badge/stable%20release-expected%20soon-blue?style=flat-square)](https://github.com/lyfie-org/luthor/releases)

[![npm version](https://img.shields.io/npm/v/@lyfie/luthor?style=flat-square)](https://www.npmjs.com/package/@lyfie/luthor)
[![npm downloads](https://img.shields.io/npm/dm/@lyfie/luthor?style=flat-square)](https://www.npmjs.com/package/@lyfie/luthor)
[![bundle size](https://img.shields.io/bundlephobia/minzip/@lyfie/luthor?style=flat-square)](https://bundlephobia.com/package/@lyfie/luthor)
[![types](https://img.shields.io/npm/types/@lyfie/luthor?style=flat-square)](https://www.npmjs.com/package/@lyfie/luthor)
[![license](https://img.shields.io/npm/l/@lyfie/luthor?style=flat-square)](https://github.com/lyfie-app/luthor/blob/main/LICENSE)
[![last commit](https://img.shields.io/github/last-commit/lyfie-app/luthor/main?style=flat-square)](https://github.com/lyfie-app/luthor/commits/main)
[![license](https://img.shields.io/npm/l/@lyfie/luthor?style=flat-square)](https://github.com/lyfie-org/luthor/blob/main/LICENSE)
[![last commit](https://img.shields.io/github/last-commit/lyfie-app/luthor/main?style=flat-square)](https://github.com/lyfie-org/luthor/commits/main)

</div>

Expand Down Expand Up @@ -69,9 +69,9 @@ export function App() {

- Docs landing: [luthor.fyi/docs/getting-started/luthor](https://www.luthor.fyi/docs/getting-started/luthor)
- Presets docs: [luthor.fyi/docs/luthor/presets](https://www.luthor.fyi/docs/luthor/presets)
- User guide (repo): [documentation/user/luthor/getting-started.md](https://github.com/lyfie-app/luthor/blob/main/documentation/user/luthor/getting-started.md)
- Presets/config: [documentation/user/luthor/presets-and-configuration.md](https://github.com/lyfie-app/luthor/blob/main/documentation/user/luthor/presets-and-configuration.md)
- Extensive editor guide: [documentation/user/luthor/extensive-editor.md](https://github.com/lyfie-app/luthor/blob/main/documentation/user/luthor/extensive-editor.md)
- User guide (repo): [documentation/user/luthor/getting-started.md](https://github.com/lyfie-org/luthor/blob/main/documentation/user/luthor/getting-started.md)
- Presets/config: [documentation/user/luthor/presets-and-configuration.md](https://github.com/lyfie-org/luthor/blob/main/documentation/user/luthor/presets-and-configuration.md)
- Extensive editor guide: [documentation/user/luthor/extensive-editor.md](https://github.com/lyfie-org/luthor/blob/main/documentation/user/luthor/extensive-editor.md)

## Need Headless Control?

Expand Down
6 changes: 3 additions & 3 deletions packages/luthor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lyfie-app/luthor.git"
"url": "https://github.com/lyfie-org/luthor.git"
},
"bugs": {
"url": "https://github.com/lyfie-app/luthor/issues"
"url": "https://github.com/lyfie-org/luthor/issues"
},
"homepage": "https://github.com/lyfie-app/luthor#readme",
"homepage": "https://github.com/lyfie-org/luthor#readme",
"dependencies": {
"@lexical/code": "^0.40.0",
"@lexical/link": "^0.40.0",
Expand Down