chore: 更新仓库 URL (ecs-framework → esengine)
仓库已从 esengine/ecs-framework 重命名为 esengine/esengine 更新所有引用旧 URL 的文件
This commit is contained in:
@@ -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": [
|
||||
|
||||
@@ -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';
|
||||
|
||||
@@ -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';
|
||||
|
||||
|
||||
@@ -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';
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Component, ECSComponent, Serializable, Serialize, Property } from '@esengine/ecs-framework';
|
||||
import { Component, ECSComponent, Serializable, Serialize, Property } from '@esengine/esengine';
|
||||
|
||||
/**
|
||||
* 流式锚点组件
|
||||
|
||||
@@ -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';
|
||||
|
||||
@@ -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';
|
||||
|
||||
|
||||
@@ -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';
|
||||
|
||||
|
||||
@@ -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';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import type { Entity } from '@esengine/ecs-framework';
|
||||
import type { Entity } from '@esengine/esengine';
|
||||
import { EChunkState, EChunkPriority } from './ChunkState';
|
||||
|
||||
/**
|
||||
|
||||
@@ -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']
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user