chore: release packages (#407)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2025-12-31 12:18:18 +08:00
committed by GitHub
parent 0de45279e6
commit 71e111415f
3 changed files with 14 additions and 13 deletions

View File

@@ -1,12 +0,0 @@
---
"@esengine/behavior-tree": patch
---
fix(behavior-tree): export NodeExecutorMetadata as value instead of type
Fixed the export of `NodeExecutorMetadata` decorator in `execution/index.ts`.
Previously it was exported as `export type { NodeExecutorMetadata }` which only
exported the type signature, not the actual function. This caused runtime errors
in Cocos Creator: "TypeError: (intermediate value) is not a function".
Changed to `export { NodeExecutorMetadata }` to properly export the decorator function.