fix: 恢复 @esengine/ecs-framework 包名

上一个提交错误地将 npm 包名也改了,这里恢复正确的包名。
只更新 GitHub 仓库 URL,不改变 npm 包名。
This commit is contained in:
yhh
2025-12-08 21:26:35 +08:00
parent 240b165970
commit ad96edfad0
334 changed files with 558 additions and 558 deletions

View File

@@ -1,5 +1,5 @@
import type { IScene, ServiceContainer } from '@esengine/esengine';
import { ComponentRegistry } from '@esengine/esengine';
import type { IScene, ServiceContainer } from '@esengine/ecs-framework';
import { ComponentRegistry } from '@esengine/ecs-framework';
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/esengine';
import { Component, ECSComponent, Serializable, Serialize, Property } from '@esengine/ecs-framework';
import type { IChunkCoord, IChunkBounds } from '../types';
import { EChunkState } from '../types';

View File

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

View File

@@ -1,4 +1,4 @@
import type { Entity, IScene, IService } from '@esengine/esengine';
import type { Entity, IScene, IService } from '@esengine/ecs-framework';
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/esengine';
import type { Entity, IScene } from '@esengine/ecs-framework';
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/esengine';
import type { Entity } from '@esengine/esengine';
import { EntitySystem, Matcher, ECSSystem } from '@esengine/ecs-framework';
import type { Entity } from '@esengine/ecs-framework';
import { ChunkComponent } from '../components/ChunkComponent';
import { EChunkState } from '../types';

View File

@@ -1,5 +1,5 @@
import { EntitySystem, Matcher, Time, ECSSystem } from '@esengine/esengine';
import type { Entity, Scene } from '@esengine/esengine';
import { EntitySystem, Matcher, Time, ECSSystem } from '@esengine/ecs-framework';
import type { Entity, Scene } from '@esengine/ecs-framework';
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/esengine';
import type { Entity } from '@esengine/ecs-framework';
import { EChunkState, EChunkPriority } from './ChunkState';
/**