Skip to content
This repository was archived by the owner on Sep 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
output
.DS_Store
node_modules
dist
.astro
package-lock.json
.vscode/settings.json
licenses/output
*.bak
9 changes: 8 additions & 1 deletion REUSE.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,14 @@ SPDX-FileCopyrightText = "Material Icons <https://github.com/material-icons/mate
SPDX-License-Identifier = "Apache-2.0"

[[annotations]]
path = ["docs/**.json", "docs/src/styles/**.css", "docs/src/assets/**.svg", "docs/src/assets/**.webp"]
path = [
"docs/**.json",
"docs/src/styles/**.css",
"docs/src/assets/**.svg",
"docs/src/assets/**.webp",
".gitignore",
"docs/pnpm-lock.yaml",
]
precedence = "aggregate"
SPDX-FileCopyrightText = "Copyright © SixtyFPS GmbH <info@slint.dev>"
SPDX-License-Identifier = "MIT"
12 changes: 6 additions & 6 deletions docs/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ export default defineConfig({
errorOnLocalLinks: false,
}),
],
social: {
github: "https://github.com/slint-ui/slint",
"x.com": "https://x.com/slint_ui",
linkedin: "https://www.linkedin.com/company/slint-ui/",
mastodon: "https://fosstodon.org/@slint",
},
social: [
{ icon: 'github', label: 'GitHub', href: 'https://github.com/slint-ui/slint' },
{ icon: 'x.com', label: 'X', href: 'https://x.com/slint_ui' },
{ icon: 'linkedin', label: 'Linkedin', href: 'https://www.linkedin.com/company/slint-ui/' },
{ icon: 'mastodon', label: 'Mastodon', href: 'https://fosstodon.org/@slint' },
],
favicon: "favicon.svg",
}),
],
Expand Down
23 changes: 11 additions & 12 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,22 @@
},
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/starlight": "0.32.4",
"@expressive-code/plugin-line-numbers": "0.40.2",
"@astrojs/starlight": "0.34.3",
"@expressive-code/plugin-line-numbers": "0.41.2",
"@types/node": "20.16.10",
"astro": "5.5.5",
"astro": "5.9.2",
"astro-embed": "0.9.0",
"playwright": "1.51.1",
"playwright-ctrf-json-reporter": "0.0.19",
"playwright-ctrf-json-reporter": "0.0.20",
"rehype-external-links": "3.0.0",
"sharp": "0.33.5",
"starlight-links-validator": "0.14.3",
"typescript": "5.8.2"
"sharp": "0.34.2",
"starlight-links-validator": "0.16.0",
"typescript": "5.8.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@expressive-code/core": "^0.40.2",
"@playwright/test": "1.51.1",
"cspell": "8.17.5"
"@biomejs/biome": "1.9.4",
"@expressive-code/core": "0.41.2",
"@playwright/test": "1.52.0",
"cspell": "9.0.2"
},
"pnpm": {
"onlyBuiltDependencies": ["@biomejs/biome", "esbuild", "sharp"]
Expand Down
Loading