chore: move docs site workspace (#11)

* chore: move docs site workspace

* chore: configure docs site deployment
This commit is contained in:
Andrey Avtomonov 2026-05-11 18:00:00 +02:00 committed by GitHub
commit 5a4d8781b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
54 changed files with 9 additions and 3 deletions

1
.gitignore vendored
View file

@ -63,3 +63,4 @@ yarn-error.log*
*.swp
*.swo
*~
.vercel

1
docs-site/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
.vercel

View file

@ -17,6 +17,7 @@
"react-dom": "19.2.6"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"typescript": "^5.9",

5
pnpm-lock.yaml generated
View file

@ -22,7 +22,7 @@ importers:
specifier: ^4.0.18
version: 4.1.5(@opentelemetry/api@1.9.0)(@types/node@24.12.2)(vite@8.0.10(@types/node@24.12.2)(esbuild@0.27.7)(jiti@2.7.0)(yaml@2.8.3))
docs:
docs-site:
dependencies:
fumadocs-core:
specifier: 15.7.13
@ -46,6 +46,9 @@ importers:
'@tailwindcss/postcss':
specifier: ^4
version: 4.3.0
'@types/node':
specifier: ^24.3.0
version: 24.12.2
'@types/react':
specifier: ^19
version: 19.2.14

View file

@ -1,6 +1,6 @@
packages:
- "packages/*"
- "docs"
- "docs-site"
overrides:
"@types/node": ^24.3.0

View file

@ -6,7 +6,7 @@ import { fileURLToPath, pathToFileURL } from 'node:url';
const codeExtensions = new Set(['.ts', '.tsx', '.js', '.jsx', '.mjs', '.cjs', '.py']);
const runtimeAssetPatterns = [/^packages\/[^/]+\/prompts\/.+\.md$/, /^packages\/[^/]+\/skills\/.+\.md$/];
const identifierSkipPrefixes = ['docs/', 'examples/', 'python/ktx-sl/plans/', 'python/ktx-sl/openspec/'];
const identifierSkipPrefixes = ['docs/', 'docs-site/', 'examples/', 'python/ktx-sl/plans/', 'python/ktx-sl/openspec/'];
const identifierAllowPatterns = [
/^packages\/cli\/src\/(?:index|managed-local-embeddings|managed-python-command|managed-python-daemon|managed-python-runtime|runtime)(?:\.test)?\.ts$/,
/^scripts\/(?:build-public-npm-package|build-python-runtime-wheel|local-embeddings-runtime-smoke|package-artifacts|publish-public-npm-package|published-package-smoke|release-readiness)(?:\.test)?\.mjs$/,