* refactor: 编辑器/运行时架构拆分与构建系统升级 * feat(core): 层级系统重构与UI变换矩阵修复 * refactor: 移除 ecs-components 聚合包并修复跨包组件查找问题 * fix(physics): 修复跨包组件类引用问题 * feat: 统一运行时架构与浏览器运行支持 * feat(asset): 实现浏览器运行时资产加载系统 * fix: 修复文档、CodeQL安全问题和CI类型检查错误 * fix: 修复文档、CodeQL安全问题和CI类型检查错误 * fix: 修复文档、CodeQL安全问题、CI类型检查和测试错误 * test: 补齐核心模块测试用例,修复CI构建配置 * fix: 修复测试用例中的类型错误和断言问题 * fix: 修复 turbo build:npm 任务的依赖顺序问题 * fix: 修复 CI 构建错误并优化构建性能 * feat(docs): 重构文档站主题样式 * chore(ci): 升级所有 workflow 的 pnpm 版本从 v8 到 v10
247 lines
8.1 KiB
JavaScript
247 lines
8.1 KiB
JavaScript
import { defineConfig } from 'vitepress'
|
||
import Icons from 'unplugin-icons/vite'
|
||
import { readFileSync } from 'fs'
|
||
import { join, dirname } from 'path'
|
||
import { fileURLToPath } from 'url'
|
||
|
||
const __dirname = dirname(fileURLToPath(import.meta.url))
|
||
const corePackageJson = JSON.parse(
|
||
readFileSync(join(__dirname, '../../packages/core/package.json'), 'utf-8')
|
||
)
|
||
|
||
export default defineConfig({
|
||
vite: {
|
||
plugins: [
|
||
Icons({
|
||
compiler: 'vue3',
|
||
autoInstall: true
|
||
})
|
||
],
|
||
server: {
|
||
fs: {
|
||
allow: ['..']
|
||
},
|
||
middlewareMode: false,
|
||
headers: {
|
||
'Cross-Origin-Embedder-Policy': 'require-corp',
|
||
'Cross-Origin-Opener-Policy': 'same-origin'
|
||
}
|
||
}
|
||
},
|
||
title: 'ESEngine',
|
||
description: '高性能 TypeScript ECS 框架 - 为游戏开发而生',
|
||
lang: 'zh-CN',
|
||
|
||
appearance: 'force-dark',
|
||
|
||
themeConfig: {
|
||
siteTitle: 'ESEngine',
|
||
|
||
nav: [
|
||
{ text: '首页', link: '/' },
|
||
{ text: '快速开始', link: '/guide/getting-started' },
|
||
{ text: '指南', link: '/guide/' },
|
||
{ text: 'API', link: '/api/README' },
|
||
{
|
||
text: '示例',
|
||
items: [
|
||
{ text: 'Worker系统演示', link: '/examples/worker-system-demo' },
|
||
{ text: '割草机演示', link: 'https://github.com/esengine/lawn-mower-demo' }
|
||
]
|
||
},
|
||
{
|
||
text: `v${corePackageJson.version}`,
|
||
link: 'https://github.com/esengine/ecs-framework/releases'
|
||
}
|
||
],
|
||
|
||
sidebar: {
|
||
'/guide/': [
|
||
{
|
||
text: '开始使用',
|
||
items: [
|
||
{ text: '快速开始', link: '/guide/getting-started' },
|
||
{ text: '指南概览', link: '/guide/' }
|
||
]
|
||
},
|
||
{
|
||
text: '核心概念',
|
||
collapsed: false,
|
||
items: [
|
||
{ text: '实体类 (Entity)', link: '/guide/entity' },
|
||
{ text: '层级系统 (Hierarchy)', link: '/guide/hierarchy' },
|
||
{ text: '组件系统 (Component)', link: '/guide/component' },
|
||
{ text: '实体查询系统', link: '/guide/entity-query' },
|
||
{
|
||
text: '系统架构 (System)',
|
||
link: '/guide/system',
|
||
items: [
|
||
{ text: 'Worker系统 (多线程)', link: '/guide/worker-system' }
|
||
]
|
||
},
|
||
{
|
||
text: '场景管理 (Scene)',
|
||
link: '/guide/scene',
|
||
items: [
|
||
{ text: 'SceneManager', link: '/guide/scene-manager' },
|
||
{ text: 'WorldManager', link: '/guide/world-manager' }
|
||
]
|
||
},
|
||
{
|
||
text: '行为树系统 (Behavior Tree)',
|
||
link: '/guide/behavior-tree/',
|
||
items: [
|
||
{ text: '快速开始', link: '/guide/behavior-tree/getting-started' },
|
||
{ text: '核心概念', link: '/guide/behavior-tree/core-concepts' },
|
||
{ text: '编辑器指南', link: '/guide/behavior-tree/editor-guide' },
|
||
{ text: '编辑器工作流', link: '/guide/behavior-tree/editor-workflow' },
|
||
{ text: '自定义动作组件', link: '/guide/behavior-tree/custom-actions' },
|
||
{ text: 'Cocos Creator集成', link: '/guide/behavior-tree/cocos-integration' },
|
||
{ text: 'Laya引擎集成', link: '/guide/behavior-tree/laya-integration' },
|
||
{ text: '高级用法', link: '/guide/behavior-tree/advanced-usage' },
|
||
{ text: '最佳实践', link: '/guide/behavior-tree/best-practices' }
|
||
]
|
||
},
|
||
{ text: '序列化系统 (Serialization)', link: '/guide/serialization' },
|
||
{ text: '事件系统 (Event)', link: '/guide/event-system' },
|
||
{ text: '时间和定时器 (Time)', link: '/guide/time-and-timers' },
|
||
{ text: '日志系统 (Logger)', link: '/guide/logging' }
|
||
]
|
||
},
|
||
{
|
||
text: '高级特性',
|
||
collapsed: false,
|
||
items: [
|
||
{ text: '服务容器 (Service Container)', link: '/guide/service-container' },
|
||
{ text: '插件系统 (Plugin System)', link: '/guide/plugin-system' }
|
||
]
|
||
},
|
||
{
|
||
text: '平台适配器',
|
||
link: '/guide/platform-adapter',
|
||
collapsed: false,
|
||
items: [
|
||
{ text: '浏览器适配器', link: '/guide/platform-adapter/browser' },
|
||
{ text: '微信小游戏适配器', link: '/guide/platform-adapter/wechat-minigame' },
|
||
{ text: 'Node.js适配器', link: '/guide/platform-adapter/nodejs' }
|
||
]
|
||
}
|
||
],
|
||
'/examples/': [
|
||
{
|
||
text: '示例',
|
||
items: [
|
||
{ text: '示例概览', link: '/examples/' },
|
||
{ text: 'Worker系统演示', link: '/examples/worker-system-demo' }
|
||
]
|
||
}
|
||
],
|
||
'/api/': [
|
||
{
|
||
text: 'API 参考',
|
||
items: [
|
||
{ text: '概述', link: '/api/README' },
|
||
{
|
||
text: '核心类',
|
||
collapsed: false,
|
||
items: [
|
||
{ text: 'Core', link: '/api/classes/Core' },
|
||
{ text: 'Scene', link: '/api/classes/Scene' },
|
||
{ text: 'World', link: '/api/classes/World' },
|
||
{ text: 'Entity', link: '/api/classes/Entity' },
|
||
{ text: 'Component', link: '/api/classes/Component' },
|
||
{ text: 'EntitySystem', link: '/api/classes/EntitySystem' }
|
||
]
|
||
},
|
||
{
|
||
text: '系统类',
|
||
collapsed: true,
|
||
items: [
|
||
{ text: 'PassiveSystem', link: '/api/classes/PassiveSystem' },
|
||
{ text: 'ProcessingSystem', link: '/api/classes/ProcessingSystem' },
|
||
{ text: 'IntervalSystem', link: '/api/classes/IntervalSystem' }
|
||
]
|
||
},
|
||
{
|
||
text: '工具类',
|
||
collapsed: true,
|
||
items: [
|
||
{ text: 'Matcher', link: '/api/classes/Matcher' },
|
||
{ text: 'Time', link: '/api/classes/Time' },
|
||
{ text: 'PerformanceMonitor', link: '/api/classes/PerformanceMonitor' },
|
||
{ text: 'DebugManager', link: '/api/classes/DebugManager' }
|
||
]
|
||
},
|
||
{
|
||
text: '接口',
|
||
collapsed: true,
|
||
items: [
|
||
{ text: 'IScene', link: '/api/interfaces/IScene' },
|
||
{ text: 'IComponent', link: '/api/interfaces/IComponent' },
|
||
{ text: 'ISystemBase', link: '/api/interfaces/ISystemBase' },
|
||
{ text: 'ICoreConfig', link: '/api/interfaces/ICoreConfig' }
|
||
]
|
||
},
|
||
{
|
||
text: '装饰器',
|
||
collapsed: true,
|
||
items: [
|
||
{ text: '@ECSComponent', link: '/api/functions/ECSComponent' },
|
||
{ text: '@ECSSystem', link: '/api/functions/ECSSystem' }
|
||
]
|
||
},
|
||
{
|
||
text: '枚举',
|
||
collapsed: true,
|
||
items: [
|
||
{ text: 'ECSEventType', link: '/api/enumerations/ECSEventType' },
|
||
{ text: 'LogLevel', link: '/api/enumerations/LogLevel' }
|
||
]
|
||
}
|
||
]
|
||
}
|
||
]
|
||
},
|
||
|
||
socialLinks: [
|
||
{ icon: 'github', link: 'https://github.com/esengine/ecs-framework' }
|
||
],
|
||
|
||
footer: {
|
||
message: 'Released under the MIT License.',
|
||
copyright: 'Copyright © 2025 ECS Framework'
|
||
},
|
||
|
||
editLink: {
|
||
pattern: 'https://github.com/esengine/ecs-framework/edit/master/docs/:path',
|
||
text: '在 GitHub 上编辑此页'
|
||
},
|
||
|
||
search: {
|
||
provider: 'local'
|
||
},
|
||
|
||
outline: {
|
||
level: [2, 3],
|
||
label: '在这个页面上'
|
||
}
|
||
},
|
||
|
||
head: [
|
||
['meta', { name: 'theme-color', content: '#646cff' }],
|
||
['link', { rel: 'icon', href: '/favicon.ico' }]
|
||
],
|
||
|
||
// 使用自定义域名 esengine.cn 时,base 设置为 '/'
|
||
// 如果部署到 GitHub Pages 子路径,改为 '/ecs-framework/'
|
||
base: '/',
|
||
cleanUrls: true,
|
||
|
||
markdown: {
|
||
lineNumbers: true,
|
||
theme: {
|
||
light: 'github-light',
|
||
dark: 'github-dark'
|
||
}
|
||
}
|
||
}) |