From 67e97f89c65ef248906614ac6b1d4e6d5dd53f3a Mon Sep 17 00:00:00 2001 From: YHH <359807859@qq.com> Date: Fri, 26 Dec 2025 16:52:29 +0800 Subject: [PATCH] fix(ci): update typedoc path and add workflow_dispatch (#341) * fix: update Laya examples, add CLI docs, fix changesets workflow - Update Laya examples to use Laya 3.x Script pattern (@regClass) - Add CLI tool quick start section to README (npx @esengine/cli init) - Fix changesets workflow to only build framework packages - Remove unnecessary Rust/WASM build steps from changesets workflow - Remove redundant 'pnpm build' from changeset:publish script * docs: add CLI documentation and update Laya examples - Add CLI quick start section to getting-started.md (zh/en) - Update Laya examples to use Laya 3.x Script pattern * fix(ci): update typedoc path and add workflow_dispatch - Fix typedoc entry point: packages/core -> packages/framework/core - Add workflow_dispatch to release-changesets for manual triggering - Add deeper package paths to trigger on nested packages --- .github/workflows/release-changesets.yml | 3 +++ typedoc.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-changesets.yml b/.github/workflows/release-changesets.yml index 30bfd996..76200073 100644 --- a/.github/workflows/release-changesets.yml +++ b/.github/workflows/release-changesets.yml @@ -7,6 +7,9 @@ on: paths: - '.changeset/**' - 'packages/*/package.json' + - 'packages/*/*/package.json' + - 'packages/*/*/*/package.json' + workflow_dispatch: concurrency: ${{ github.workflow }}-${{ github.ref }} diff --git a/typedoc.json b/typedoc.json index 544150c2..8f2f9719 100644 --- a/typedoc.json +++ b/typedoc.json @@ -1,5 +1,5 @@ { - "entryPoints": ["./packages/core/src/index.ts"], + "entryPoints": ["./packages/framework/core/src/index.ts"], "out": "./docs/api", "plugin": ["typedoc-plugin-markdown"], "readme": "none",