Skip to content
Open
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
12 changes: 9 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# build output
dist/

# generated types
.astro/
.tanstack
.cache
.vercel
.output
.nitro

# dependencies
node_modules/
Expand All @@ -19,3 +21,7 @@ pnpm-debug.log*

# macOS-specific files
.DS_Store

# moon
.moon/cache
.moon/docker
17 changes: 17 additions & 0 deletions .moon/toolchain.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
$schema: "./cache/schemas/toolchain.json"

unstable_javascript:
packageManager: pnpm
dedupeOnLockfileChange: true
syncProjectWorkspaceDependencies: true
inferTasksFromScripts: false

unstable_node: {}

unstable_pnpm: {}

typescript:
syncProjectReferences: true
syncProjectReferencesToPaths: true
includeProjectReferenceSources: true
includeSharedTypes: true
8 changes: 8 additions & 0 deletions .moon/workspace.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
$schema: "./cache/schemas/workspace.json"

projects:
globs:
- "packages/*"
- "web"
sources:
root: "."
1 change: 1 addition & 0 deletions .prototools
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node = "24.9.0"
pnpm = "10.18.0"
moon = "1.41.5"
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"recommendations": ["astro-build.astro-vscode"],
"recommendations": [],
"unwantedRecommendations": []
}
9 changes: 1 addition & 8 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
"configurations": []
}
88 changes: 0 additions & 88 deletions astro.config.mjs

This file was deleted.

3 changes: 2 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"useIgnoreFile": true
},
"files": {
"includes": ["**", "!**/*.gen.ts", "!**/*.generated.ts"],
"ignoreUnknown": false
},
"assist": {
Expand All @@ -25,7 +26,7 @@
"linter": {
"enabled": true,
"domains": {
"solid": "recommended"
"react": "recommended"
},
"rules": {
"recommended": true
Expand Down
16 changes: 16 additions & 0 deletions moon.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
stack: "infrastructure"
layer: "configuration"

tasks:
check:
command: "biome check"

check-fix:
command: "biome check --write"
options:
runInCI: false

format:
command: "biome format --write"
options:
runInCI: false
26 changes: 5 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,14 @@
{
"private": true,
"name": "website",
"name": "root",
"version": "1.0.0",
"type": "module",
"scripts": {
"astro": "astro",
"build": "astro build",
"check": "biome check",
"check:fix": "biome check --write",
"dev": "astro dev",
"format": "biome format --write",
"preview": "astro preview",
"start": "astro dev"
},
"dependencies": {
"@astrojs/starlight": "^0.36.0",
"@astrojs/starlight-docsearch": "^0.6.0",
"astro": "^5.6.1",
"sharp": "^0.34.2",
"starlight-blog": "^0.24.1",
"starlight-changelogs": "^0.2.1",
"starlight-links-validator": "^0.18.0",
"starlight-llms-txt": "^0.6.0"
"deps": "pnpm update --latest --interactive --recursive"
},
"devDependencies": {
"@biomejs/biome": "2.2.5",
"@biomejs/biome": "2.2.7",
"typescript": "^5.9.3"
}
},
"packageManager": "[email protected]"
}
Loading