chore: release packages

This commit is contained in:
github-actions[bot]
2026-01-06 10:26:20 +00:00
parent 50681553b5
commit c188a36f2b
19 changed files with 88 additions and 27 deletions

View File

@@ -1,18 +0,0 @@
---
"@esengine/blueprint": minor
---
feat(blueprint): add Schema type system and @BlueprintArray decorator
- Add `Schema` fluent API for defining complex data types:
- Primitive types: `Schema.float()`, `Schema.int()`, `Schema.string()`, `Schema.boolean()`, `Schema.vector2()`, `Schema.vector3()`
- Composite types: `Schema.object()`, `Schema.array()`, `Schema.enum()`, `Schema.ref()`
- Support for constraints: `min`, `max`, `step`, `defaultValue`, `placeholder`, etc.
- Add `@BlueprintArray` decorator for array properties:
- `itemSchema`: Define schema for array items using Schema API
- `reorderable`: Allow drag-and-drop reordering
- `exposeElementPorts`: Create individual ports for each array element
- `portNameTemplate`: Custom naming for element ports (e.g., "Waypoint {index1}")
- Update documentation with examples and usage guide

View File

@@ -1,5 +1,21 @@
# @esengine/blueprint # @esengine/blueprint
## 4.5.0
### Minor Changes
- [#447](https://github.com/esengine/esengine/pull/447) [`4e66bd8`](https://github.com/esengine/esengine/commit/4e66bd8e2be80b366a7723dcc48b99df0457aed4) Thanks [@esengine](https://github.com/esengine)! - feat(blueprint): add Schema type system and @BlueprintArray decorator
- Add `Schema` fluent API for defining complex data types:
- Primitive types: `Schema.float()`, `Schema.int()`, `Schema.string()`, `Schema.boolean()`, `Schema.vector2()`, `Schema.vector3()`
- Composite types: `Schema.object()`, `Schema.array()`, `Schema.enum()`, `Schema.ref()`
- Support for constraints: `min`, `max`, `step`, `defaultValue`, `placeholder`, etc.
- Add `@BlueprintArray` decorator for array properties:
- `itemSchema`: Define schema for array items using Schema API
- `reorderable`: Allow drag-and-drop reordering
- `exposeElementPorts`: Create individual ports for each array element
- `portNameTemplate`: Custom naming for element ports (e.g., "Waypoint {index1}")
- Update documentation with examples and usage guide
## 4.4.0 ## 4.4.0
### Minor Changes ### Minor Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@esengine/blueprint", "name": "@esengine/blueprint",
"version": "4.4.0", "version": "4.5.0",
"description": "Visual scripting system - works with any ECS framework (ESEngine, Cocos, Laya, etc.)", "description": "Visual scripting system - works with any ECS framework (ESEngine, Cocos, Laya, etc.)",
"main": "dist/index.js", "main": "dist/index.js",
"module": "dist/index.js", "module": "dist/index.js",

View File

@@ -1,5 +1,12 @@
# @esengine/fsm # @esengine/fsm
## 9.0.0
### Patch Changes
- Updated dependencies [[`4e66bd8`](https://github.com/esengine/esengine/commit/4e66bd8e2be80b366a7723dcc48b99df0457aed4)]:
- @esengine/blueprint@4.5.0
## 8.0.0 ## 8.0.0
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@esengine/fsm", "name": "@esengine/fsm",
"version": "8.0.0", "version": "9.0.0",
"description": "Finite State Machine for ECS Framework / ECS 框架的有限状态机", "description": "Finite State Machine for ECS Framework / ECS 框架的有限状态机",
"type": "module", "type": "module",
"main": "./dist/index.js", "main": "./dist/index.js",

View File

@@ -1,5 +1,12 @@
# @esengine/ecs-framework-math # @esengine/ecs-framework-math
## 2.10.1
### Patch Changes
- Updated dependencies [[`4e66bd8`](https://github.com/esengine/esengine/commit/4e66bd8e2be80b366a7723dcc48b99df0457aed4)]:
- @esengine/blueprint@4.5.0
## 2.10.0 ## 2.10.0
### Minor Changes ### Minor Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@esengine/ecs-framework-math", "name": "@esengine/ecs-framework-math",
"version": "2.10.0", "version": "2.10.1",
"description": "ECS框架2D数学库 - 提供向量、矩阵、几何形状和碰撞检测功能", "description": "ECS框架2D数学库 - 提供向量、矩阵、几何形状和碰撞检测功能",
"main": "bin/index.js", "main": "bin/index.js",
"types": "bin/index.d.ts", "types": "bin/index.d.ts",

View File

@@ -1,5 +1,13 @@
# @esengine/network # @esengine/network
## 13.0.0
### Patch Changes
- Updated dependencies [[`4e66bd8`](https://github.com/esengine/esengine/commit/4e66bd8e2be80b366a7723dcc48b99df0457aed4)]:
- @esengine/blueprint@4.5.0
- @esengine/ecs-framework-math@2.10.1
## 12.0.0 ## 12.0.0
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@esengine/network", "name": "@esengine/network",
"version": "12.0.0", "version": "13.0.0",
"description": "Network synchronization for multiplayer games", "description": "Network synchronization for multiplayer games",
"esengine": { "esengine": {
"plugin": true, "plugin": true,

View File

@@ -1,5 +1,13 @@
# @esengine/pathfinding # @esengine/pathfinding
## 12.0.0
### Patch Changes
- Updated dependencies [[`4e66bd8`](https://github.com/esengine/esengine/commit/4e66bd8e2be80b366a7723dcc48b99df0457aed4)]:
- @esengine/blueprint@4.5.0
- @esengine/ecs-framework-math@2.10.1
## 11.0.0 ## 11.0.0
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@esengine/pathfinding", "name": "@esengine/pathfinding",
"version": "11.0.0", "version": "12.0.0",
"description": "寻路系统 | Pathfinding System - A*, Grid, NavMesh", "description": "寻路系统 | Pathfinding System - A*, Grid, NavMesh",
"type": "module", "type": "module",
"main": "./dist/index.js", "main": "./dist/index.js",

View File

@@ -1,5 +1,12 @@
# @esengine/procgen # @esengine/procgen
## 9.0.0
### Patch Changes
- Updated dependencies [[`4e66bd8`](https://github.com/esengine/esengine/commit/4e66bd8e2be80b366a7723dcc48b99df0457aed4)]:
- @esengine/blueprint@4.5.0
## 8.0.0 ## 8.0.0
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@esengine/procgen", "name": "@esengine/procgen",
"version": "8.0.0", "version": "9.0.0",
"description": "Procedural generation tools for ECS Framework / ECS 框架的程序化生成工具", "description": "Procedural generation tools for ECS Framework / ECS 框架的程序化生成工具",
"type": "module", "type": "module",
"main": "./dist/index.js", "main": "./dist/index.js",

View File

@@ -1,5 +1,13 @@
# @esengine/spatial # @esengine/spatial
## 12.0.0
### Patch Changes
- Updated dependencies [[`4e66bd8`](https://github.com/esengine/esengine/commit/4e66bd8e2be80b366a7723dcc48b99df0457aed4)]:
- @esengine/blueprint@4.5.0
- @esengine/ecs-framework-math@2.10.1
## 11.0.0 ## 11.0.0
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@esengine/spatial", "name": "@esengine/spatial",
"version": "11.0.0", "version": "12.0.0",
"description": "Spatial query and indexing system for ECS Framework / ECS 框架的空间查询和索引系统", "description": "Spatial query and indexing system for ECS Framework / ECS 框架的空间查询和索引系统",
"type": "module", "type": "module",
"main": "./dist/index.js", "main": "./dist/index.js",

View File

@@ -1,5 +1,12 @@
# @esengine/timer # @esengine/timer
## 9.0.0
### Patch Changes
- Updated dependencies [[`4e66bd8`](https://github.com/esengine/esengine/commit/4e66bd8e2be80b366a7723dcc48b99df0457aed4)]:
- @esengine/blueprint@4.5.0
## 8.0.0 ## 8.0.0
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@esengine/timer", "name": "@esengine/timer",
"version": "8.0.0", "version": "9.0.0",
"description": "Timer and cooldown system for ECS Framework / ECS 框架的定时器和冷却系统", "description": "Timer and cooldown system for ECS Framework / ECS 框架的定时器和冷却系统",
"type": "module", "type": "module",
"main": "./dist/index.js", "main": "./dist/index.js",

View File

@@ -1,5 +1,16 @@
# @esengine/demos # @esengine/demos
## 1.0.18
### Patch Changes
- Updated dependencies []:
- @esengine/fsm@9.0.0
- @esengine/pathfinding@12.0.0
- @esengine/procgen@9.0.0
- @esengine/spatial@12.0.0
- @esengine/timer@9.0.0
## 1.0.17 ## 1.0.17
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@esengine/demos", "name": "@esengine/demos",
"version": "1.0.17", "version": "1.0.18",
"private": true, "private": true,
"description": "Demo tests for ESEngine modules documentation", "description": "Demo tests for ESEngine modules documentation",
"type": "module", "type": "module",