From 98dfb5d9d18be891eab4433dd74f02be25e14298 Mon Sep 17 00:00:00 2001 From: avivkeller Date: Fri, 22 Aug 2025 17:08:12 -0400 Subject: [PATCH 1/6] fix(id-token): explicitly set repository.url --- packages/i18n/package.json | 3 +++ packages/rehype-shiki/package.json | 3 +++ packages/remark-lint/package.json | 3 +++ packages/ui-components/package.json | 3 +++ 4 files changed, 12 insertions(+) diff --git a/packages/i18n/package.json b/packages/i18n/package.json index ee8c742919d47..fbab8f36bd626 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -10,6 +10,9 @@ ], ".": "./src/index.mjs" }, + "repository": { + "url": "https://github.com/nodejs/nodejs.org" + }, "main": "./src/index.mjs", "module": "./src/index.mjs", "scripts": { diff --git a/packages/rehype-shiki/package.json b/packages/rehype-shiki/package.json index 631308016f4de..2ae8f4be9c748 100644 --- a/packages/rehype-shiki/package.json +++ b/packages/rehype-shiki/package.json @@ -5,6 +5,9 @@ ".": "./src/index.mjs", "./*": "./src/*.mjs" }, + "repository": { + "url": "https://github.com/nodejs/nodejs.org" + }, "scripts": { "lint": "node --run lint:js", "lint:fix": "node --run lint:js:fix", diff --git a/packages/remark-lint/package.json b/packages/remark-lint/package.json index 72753be7fce5e..5ebbe8d8b4fa9 100644 --- a/packages/remark-lint/package.json +++ b/packages/remark-lint/package.json @@ -6,6 +6,9 @@ ".": "./src/index.mjs", "./api": "./src/api.mjs" }, + "repository": { + "url": "https://github.com/nodejs/nodejs.org" + }, "scripts": { "lint": "node --run lint:js", "lint:fix": "node --run lint:js:fix", diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index 21eb5e99bcbe0..a936028f60c71 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -10,6 +10,9 @@ "./src/*/index.ts" ] }, + "repository": { + "url": "https://github.com/nodejs/nodejs.org" + }, "scripts": { "compile:ts": "tsc", "compile:css": "postcss --dir dist --base src \"src/**/*.module.css\" src/styles/index.css", From de496c78fecf163cfa5c98a745d66eebc791b6aa Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Fri, 22 Aug 2025 17:10:41 -0400 Subject: [PATCH 2/6] Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Aviv Keller --- packages/rehype-shiki/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/rehype-shiki/package.json b/packages/rehype-shiki/package.json index 2ae8f4be9c748..5a8ade1dd2ee3 100644 --- a/packages/rehype-shiki/package.json +++ b/packages/rehype-shiki/package.json @@ -6,6 +6,7 @@ "./*": "./src/*.mjs" }, "repository": { + "type": "git", "url": "https://github.com/nodejs/nodejs.org" }, "scripts": { From 8a96211d81a2b28c6a8f2e579be11f53ce7e166c Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Fri, 22 Aug 2025 17:10:49 -0400 Subject: [PATCH 3/6] Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Aviv Keller --- packages/remark-lint/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/remark-lint/package.json b/packages/remark-lint/package.json index 5ebbe8d8b4fa9..518a803ba88e4 100644 --- a/packages/remark-lint/package.json +++ b/packages/remark-lint/package.json @@ -7,6 +7,7 @@ "./api": "./src/api.mjs" }, "repository": { + "type": "git", "url": "https://github.com/nodejs/nodejs.org" }, "scripts": { From 42bfde3a2cf3b921f2b979bb15efde6fd4264422 Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Fri, 22 Aug 2025 17:10:54 -0400 Subject: [PATCH 4/6] Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Aviv Keller --- packages/ui-components/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index a936028f60c71..5cf08423d640b 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -11,6 +11,7 @@ ] }, "repository": { + "type": "git", "url": "https://github.com/nodejs/nodejs.org" }, "scripts": { From fa4370df20cef5f212197eded647869c70969a62 Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Fri, 22 Aug 2025 17:11:53 -0400 Subject: [PATCH 5/6] Update packages/i18n/package.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Aviv Keller --- packages/i18n/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/i18n/package.json b/packages/i18n/package.json index fbab8f36bd626..e75589f333a73 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -11,6 +11,7 @@ ".": "./src/index.mjs" }, "repository": { + "type": "git", "url": "https://github.com/nodejs/nodejs.org" }, "main": "./src/index.mjs", From 1cb7e4ab22055c78459d8c757b8856642134f8fb Mon Sep 17 00:00:00 2001 From: avivkeller Date: Fri, 22 Aug 2025 17:14:03 -0400 Subject: [PATCH 6/6] fixup! --- packages/i18n/package.json | 3 ++- packages/rehype-shiki/package.json | 3 ++- packages/remark-lint/package.json | 3 ++- packages/ui-components/package.json | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/packages/i18n/package.json b/packages/i18n/package.json index e75589f333a73..e99deeabdaf7f 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -12,7 +12,8 @@ }, "repository": { "type": "git", - "url": "https://github.com/nodejs/nodejs.org" + "url": "https://github.com/nodejs/nodejs.org", + "directory": "packages/i18n" }, "main": "./src/index.mjs", "module": "./src/index.mjs", diff --git a/packages/rehype-shiki/package.json b/packages/rehype-shiki/package.json index 5a8ade1dd2ee3..62edd03c52ae2 100644 --- a/packages/rehype-shiki/package.json +++ b/packages/rehype-shiki/package.json @@ -7,7 +7,8 @@ }, "repository": { "type": "git", - "url": "https://github.com/nodejs/nodejs.org" + "url": "https://github.com/nodejs/nodejs.org", + "directory": "packages/rehype-shiki" }, "scripts": { "lint": "node --run lint:js", diff --git a/packages/remark-lint/package.json b/packages/remark-lint/package.json index 518a803ba88e4..a607b9e085217 100644 --- a/packages/remark-lint/package.json +++ b/packages/remark-lint/package.json @@ -8,7 +8,8 @@ }, "repository": { "type": "git", - "url": "https://github.com/nodejs/nodejs.org" + "url": "https://github.com/nodejs/nodejs.org", + "directory": "packages/remark-lint" }, "scripts": { "lint": "node --run lint:js", diff --git a/packages/ui-components/package.json b/packages/ui-components/package.json index 5cf08423d640b..4267399460f16 100644 --- a/packages/ui-components/package.json +++ b/packages/ui-components/package.json @@ -12,7 +12,8 @@ }, "repository": { "type": "git", - "url": "https://github.com/nodejs/nodejs.org" + "url": "https://github.com/nodejs/nodejs.org", + "directory": "packages/ui-components" }, "scripts": { "compile:ts": "tsc",