From c3d27d118086bc1f07a94b939d0595cc1d5adae9 Mon Sep 17 00:00:00 2001 From: alex Date: Fri, 12 May 2023 17:02:32 +0100 Subject: [PATCH] remove references to tldraw-lite (#1367) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit remove some stray tldraw-lite references ### Change Type - [x] `internal` — Any other changes that don't affect the published package (will not publish a new version) --- apps/docs/scripts/generateContent.ts | 2 +- package.json | 2 +- scripts/publish-new.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/docs/scripts/generateContent.ts b/apps/docs/scripts/generateContent.ts index a28800187..8a793562b 100644 --- a/apps/docs/scripts/generateContent.ts +++ b/apps/docs/scripts/generateContent.ts @@ -103,7 +103,7 @@ function generateSection( author: parsed.data.author ? authors[parsed.data.author as keyof typeof authors] ?? null : null, - sourceUrl: `https://github.com/tldraw/tldraw-lite/tree/main/apps/docs/content/${section.id}/${articleId}${extension}`, + sourceUrl: `https://github.com/tldraw/tldraw/tree/main/apps/docs/content/${section.id}/${articleId}${extension}`, } if (article.id === section.id) { diff --git a/package.json b/package.json index d7956a321..29a06b704 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "homepage": "https://tldraw.dev", "repository": { "type": "git", - "url": "https://github.com/tldraw/tldraw-lite" + "url": "https://github.com/tldraw/tldraw" }, "bugs": { "url": "https://github.com/tldraw/tldraw/issues" diff --git a/scripts/publish-new.ts b/scripts/publish-new.ts index 9b8ecc07d..8f56ffda6 100644 --- a/scripts/publish-new.ts +++ b/scripts/publish-new.ts @@ -8,7 +8,7 @@ async function main() { plugins: ['npm'], baseBranch: 'main', owner: 'tldraw', - repo: 'tldraw-lite', + repo: 'tldraw', verbose: true, })