Skip to content

Commit e2dc15d

Browse files
committed
fix
1 parent 30098a2 commit e2dc15d

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

apps/svelte.dev/scripts/sync-packages/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ async function getNpmAndGitHubData(pkg: string): Promise<PackageKey & PackageNpm
126126
let repo_url = raw_repo_url
127127
?.replace(/^git\+/, '')
128128
.replace(/\.git$/, '')
129-
.replace(/ssh:\/\/git@github.com\/(.+)/, (m) => `https://github.com/${m}`);
129+
.replace(/ssh:\/\/git@github.com\/(.+)/, (_, m) => `https://github.com/${m}`);
130130

131131
if (!repo_url) {
132132
// console.error(`repo_url not found for ${pkg}`);

apps/svelte.dev/src/lib/server/generated/registry/prismicio-svelte.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@prismicio/svelte",
33
"npm_description": "Svelte components to present Prismic content.",
4-
"repo_url": "https://github.com/ssh://[email protected]/prismicio/prismic-svelte",
4+
"repo_url": "https://github.com/prismicio/prismic-svelte",
55
"authors": [
66
"chrrrs",
77
"samuelhorn",

apps/svelte.dev/src/lib/server/generated/registry/slicemachine-adapter-sveltekit.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@slicemachine/adapter-sveltekit",
33
"npm_description": "Slice Machine adapter for SvelteKit.",
4-
"repo_url": "https://github.com/ssh://[email protected]/prismicio/slice-machine",
4+
"repo_url": "https://github.com/prismicio/slice-machine",
55
"authors": [
66
"lihbr",
77
"angeloashmore",

apps/svelte.dev/src/lib/server/generated/registry/svelte-kit-sessions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "svelte-kit-sessions",
33
"npm_description": "User-friendly session management module for SvelteKit. Effortlessly integrate efficient session handling into your projects. Session is stored in the store (ex. Redis, Cloudflare KV, etc.), not in a cookie.",
4-
"repo_url": "https://github.com/ssh://[email protected]/yutak23/svelte-kit-sessions",
4+
"repo_url": "https://github.com/yutak23/svelte-kit-sessions",
55
"authors": ["yutak23"],
66
"homepage": "https://github.com/yutak23/svelte-kit-sessions#readme",
77
"version": "0.4.0",

apps/svelte.dev/src/lib/server/generated/registry/svelte-loader.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "svelte-loader",
33
"npm_description": "A webpack loader for svelte",
4-
"repo_url": "https://github.com/ssh://[email protected]/sveltejs/svelte-loader",
4+
"repo_url": "https://github.com/sveltejs/svelte-loader",
55
"authors": ["nikku", "rich_harris", "conduitry", "svelte-admin", "dummdidumm"],
66
"homepage": "https://github.com/sveltejs/svelte-loader#readme",
77
"version": "3.2.4",

apps/svelte.dev/src/lib/server/generated/registry/svelte-seo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "svelte-seo",
33
"npm_description": "Optimize your Svelte app for search engines and social media with meta tags, Open Graph, and JSON-LD.",
4-
"repo_url": "https://github.com/ssh://[email protected]/artiebits/svelte-seo",
4+
"repo_url": "https://github.com/artiebits/svelte-seo",
55
"authors": ["artiebits"],
66
"homepage": "https://github.com/artiebits/svelte-seo#readme",
77
"version": "1.7.1",

0 commit comments

Comments
 (0)