refactor: перенести сборку в проекты
All checks were successful
CI/CD Pipeline / build (push) Successful in 39s
CI/CD Pipeline / docker (push) Successful in 1m30s
CI/CD Pipeline / deploy (push) Successful in 8s

- перенесены каноны и VitePress-конфиги в projects/<slug>

- добавлены корневой и проектные build.ts для сборки артефактов

- добавлены shared-библиотеки сборки в projects/_shared/lib

- обновлены CI, Dockerfile, package.json, gitignore и README

- удалена сборка frontend-агента
This commit is contained in:
2026-05-22 19:07:10 +03:00
parent a53c5fc1b1
commit bdb99ade62
117 changed files with 442 additions and 568 deletions

9
build.ts Normal file
View File

@@ -0,0 +1,9 @@
import { generateRootLlms } from './projects/_shared/lib/root-llms';
import { run } from './projects/_shared/lib/run';
run('npm', ['run', 'build:slm-design']);
run('npm', ['run', 'build:nextjs-style-guide']);
run('npm', ['run', 'build:figma-adaptive-standards']);
run('npm', ['run', 'build:template-sync-strategy']);
generateRootLlms();
run('npm', ['run', 'app:build']);