chore: 更新仓库 URL (ecs-framework → esengine)

仓库已从 esengine/ecs-framework 重命名为 esengine/esengine
更新所有引用旧 URL 的文件
This commit is contained in:
yhh
2025-12-08 21:23:37 +08:00
parent c3b7250f85
commit 240b165970
350 changed files with 611 additions and 611 deletions

View File

@@ -17,7 +17,7 @@
"dev": "tsup --watch"
},
"dependencies": {
"@esengine/ecs-framework": "workspace:*",
"@esengine/esengine": "workspace:*",
"@esengine/engine-core": "workspace:*"
},
"devDependencies": {
@@ -25,7 +25,7 @@
"typescript": "^5.3.3"
},
"peerDependencies": {
"@esengine/ecs-framework": "workspace:*",
"@esengine/esengine": "workspace:*",
"@esengine/engine-core": "workspace:*"
},
"keywords": [

View File

@@ -1,5 +1,5 @@
import type { IScene, ServiceContainer } from '@esengine/ecs-framework';
import { ComponentRegistry } from '@esengine/ecs-framework';
import type { IScene, ServiceContainer } from '@esengine/esengine';
import { ComponentRegistry } from '@esengine/esengine';
import type { IRuntimeModule, SystemContext } from '@esengine/engine-core';
import { ChunkComponent } from './components/ChunkComponent';
import { StreamingAnchorComponent } from './components/StreamingAnchorComponent';

View File

@@ -1,4 +1,4 @@
import { Component, ECSComponent, Serializable, Serialize, Property } from '@esengine/ecs-framework';
import { Component, ECSComponent, Serializable, Serialize, Property } from '@esengine/esengine';
import type { IChunkCoord, IChunkBounds } from '../types';
import { EChunkState } from '../types';

View File

@@ -1,4 +1,4 @@
import { Component, ECSComponent, Serializable, Serialize, Property } from '@esengine/ecs-framework';
import { Component, ECSComponent, Serializable, Serialize, Property } from '@esengine/esengine';
import type { IChunkCoord, IStreamingConfig } from '../types';
import { DEFAULT_STREAMING_CONFIG } from '../types';

View File

@@ -1,4 +1,4 @@
import { Component, ECSComponent, Serializable, Serialize, Property } from '@esengine/ecs-framework';
import { Component, ECSComponent, Serializable, Serialize, Property } from '@esengine/esengine';
/**
* 流式锚点组件

View File

@@ -1,4 +1,4 @@
import type { Entity, IScene, IService } from '@esengine/ecs-framework';
import type { Entity, IScene, IService } from '@esengine/esengine';
import { TransformComponent } from '@esengine/engine-core';
import type { IChunkCoord, IChunkData, IChunkInfo, IChunkLoadRequest, IChunkBounds } from '../types';
import { EChunkState, EChunkPriority } from '../types';

View File

@@ -1,4 +1,4 @@
import type { Entity, IScene } from '@esengine/ecs-framework';
import type { Entity, IScene } from '@esengine/esengine';
import { TransformComponent } from '@esengine/engine-core';
import type { IChunkCoord, IChunkData, ISerializedEntity, IChunkBounds } from '../types';

View File

@@ -1,5 +1,5 @@
import { EntitySystem, Matcher, ECSSystem } from '@esengine/ecs-framework';
import type { Entity } from '@esengine/ecs-framework';
import { EntitySystem, Matcher, ECSSystem } from '@esengine/esengine';
import type { Entity } from '@esengine/esengine';
import { ChunkComponent } from '../components/ChunkComponent';
import { EChunkState } from '../types';

View File

@@ -1,5 +1,5 @@
import { EntitySystem, Matcher, Time, ECSSystem } from '@esengine/ecs-framework';
import type { Entity, Scene } from '@esengine/ecs-framework';
import { EntitySystem, Matcher, Time, ECSSystem } from '@esengine/esengine';
import type { Entity, Scene } from '@esengine/esengine';
import { TransformComponent } from '@esengine/engine-core';
import { StreamingAnchorComponent } from '../components/StreamingAnchorComponent';
import { ChunkLoaderComponent } from '../components/ChunkLoaderComponent';

View File

@@ -1,4 +1,4 @@
import type { Entity } from '@esengine/ecs-framework';
import type { Entity } from '@esengine/esengine';
import { EChunkState, EChunkPriority } from './ChunkState';
/**

View File

@@ -6,5 +6,5 @@ export default defineConfig({
dts: true,
sourcemap: true,
clean: true,
external: ['@esengine/ecs-framework', '@esengine/engine-core']
external: ['@esengine/esengine', '@esengine/engine-core']
});