Skip to content

Commit 70ea64b

Browse files
Merge branch 'main' into sidebar-v2
2 parents 35a4f0c + 3fa375a commit 70ea64b

File tree

7 files changed

+135
-126
lines changed

7 files changed

+135
-126
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,8 @@ If you think I missed a package, you can either open an issue or directly contri
4040

4141
### How to contribute
4242

43-
Fork the repo, edit the `/src/lib/repositories.ts` file, and open a PR.
44-
**If the repo is not in the `sveltejs` GitHub organization, please open an issue instead.**
45-
46-
The code architecture is made to be as flexible as possible, here's how it works:
43+
Fork the repo, edit the [`src/lib/repositories.ts`](src/lib/repositories.ts) file, and open a PR.
44+
The site's code has been architectured to be as flexible as possible, here's how it works:
4745

4846
```typescript
4947
export const repos = {
@@ -57,6 +55,7 @@ export const repos = {
5755
},
5856
{
5957
changesMode: "releases", // Optional line, the way to get the changes; either "releases" or "changelog", defaults to "releases"
58+
repoOwner: "your-owner", // Optional line, the name of the owner on GitHub, defaults to "sveltejs"
6059
repoName: "your-repo", // The name of the repo on GitHub, as it appears in the URL: https://github.com/sveltejs/your-repo
6160
dataFilter: ({ tag_name }) => true, // Optional line, return false to exclude a version from its tag name
6261
metadataFromTag: tag => ["package-name", "2.4.3"], // Return the package name and version from the tag name; the version must be a valid semver without any leading "v"

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
"prepare": "svelte-kit sync"
1515
},
1616
"devDependencies": {
17-
"@eslint/js": "^9.25.0",
17+
"@eslint/js": "^9.25.1",
1818
"@fontsource/dm-serif-display": "^5.2.5",
1919
"@fontsource/pretendard": "^5.2.5",
20-
"@lucide/svelte": "^0.501.0",
20+
"@lucide/svelte": "^0.503.0",
2121
"@neoconfetti/svelte": "^2.2.2",
2222
"@octokit/graphql-schema": "^15.26.0",
2323
"@prgm/sveltekit-progress-bar": "^3.0.2",
@@ -37,13 +37,13 @@
3737
"@vercel/speed-insights": "^1.2.0",
3838
"bits-ui": "^1.3.19",
3939
"clsx": "^2.1.1",
40-
"eslint": "^9.25.0",
40+
"eslint": "^9.25.1",
4141
"eslint-config-prettier": "^10.1.2",
4242
"eslint-plugin-svelte": "^3.5.1",
4343
"globals": "^16.0.0",
4444
"mode-watcher": "^1.0.2",
4545
"octokit": "^4.1.3",
46-
"posthog-js": "^1.236.2",
46+
"posthog-js": "^1.236.3",
4747
"prettier": "^3.5.3",
4848
"prettier-plugin-svelte": "^3.3.3",
4949
"prettier-plugin-tailwindcss": "^0.6.11",
@@ -59,9 +59,9 @@
5959
"tailwind-variants": "^1.0.0",
6060
"tailwindcss": "^4.1.4",
6161
"tslib": "^2.8.1",
62-
"tw-animate-css": "^1.2.6",
62+
"tw-animate-css": "^1.2.8",
6363
"typescript": "^5.8.3",
64-
"typescript-eslint": "^8.30.1",
64+
"typescript-eslint": "^8.31.0",
6565
"vite": "^6.3.2",
6666
"vite-plugin-lucide-preprocess": "^1.3.0"
6767
},
@@ -73,5 +73,5 @@
7373
]
7474
},
7575
"type": "module",
76-
"packageManager": "pnpm@10.8.1"
76+
"packageManager": "pnpm@10.9.0"
7777
}

0 commit comments

Comments
 (0)