From a08283e355a1c4090b68143c5e7af0b3c38f4dc2 Mon Sep 17 00:00:00 2001 From: Emmanuel Mutisya Date: Mon, 17 Aug 2026 16:05:21 +0300 Subject: [PATCH] fix: correct broken docs scripts and stale repo URLs --- .changeset/config.json | 2 +- CONTRIBUTING.md | 2 +- README.md | 2 +- docs/package.json | 1 - package.json | 5 ++--- 5 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.changeset/config.json b/.changeset/config.json index d17a632a..18401483 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -1,7 +1,7 @@ { "changelog": [ "@changesets/changelog-github", - { "repo": "no-witness-labs/evolution-sdk" } + { "repo": "IntersectMBO/evolution-sdk" } ], "commit": false, "fixed": [], diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7279f0ef..2dfa9dc3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -53,7 +53,7 @@ pnpm turbo dev ## Reporting Bugs -We use GitHub issues to track public bugs. Report a bug by [opening a new issue](https://github.com/no-witness-labs/evolution-sdk/issues/new). +We use GitHub issues to track public bugs. Report a bug by [opening a new issue](https://github.com/IntersectMBO/evolution-sdk/issues/new). **Great Bug Reports** tend to have: diff --git a/README.md b/README.md index a61f470e..cfec5d48 100644 --- a/README.md +++ b/README.md @@ -207,7 +207,7 @@ Evolution SDK provides **125+ core modules** plus SDK utilities, organized into ```bash # Clone the repository -git clone https://github.com/no-witness-labs/evolution-sdk.git +git clone https://github.com/IntersectMBO/evolution-sdk.git cd evolution-sdk # Enter Nix development shell (optional but recommended) diff --git a/docs/package.json b/docs/package.json index 837ee159..9a7cf490 100644 --- a/docs/package.json +++ b/docs/package.json @@ -6,7 +6,6 @@ "scripts": { "build": "next build", "dev": "next dev --turbo", - "start": "next start", "copy-evolution-docs": "tsx scripts/copy-evolution-docs.ts", "prebuild": "pnpm run copy-evolution-docs", "postinstall": "fumadocs-mdx" diff --git a/package.json b/package.json index cef84a68..7b37fbd7 100644 --- a/package.json +++ b/package.json @@ -18,9 +18,8 @@ "coverage": "turbo test -- --coverage", "clean": "turbo clean && rimraf packages/*/dist packages/*/.turbo", "docgen": "turbo docgen", - "docs:dev": "pnpm --filter @evolution-sdk/docs dev", - "docs:build": "pnpm --filter @evolution-sdk/docs build", - "docs:start": "pnpm --filter @evolution-sdk/docs start", + "docs:dev": "pnpm --filter docs dev", + "docs:build": "pnpm --filter docs build", "verify": "turbo verify", "circular": "madge --circular --extensions ts packages/*/src/index.ts", "changeset": "changeset",