From 7e5ce1ec4893d30d5ee8cdcf8bb4e54162aca843 Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Mon, 10 Aug 2026 18:03:29 +0900 Subject: [PATCH 01/10] docs(changelog): backfill in-repo release history across all 3 packages sea-builder, typescript-config, and vite-lib-config all shipped CHANGELOG.md scaffolding with an empty Unreleased heading in #106, but none of their release history was populated yet. Classify every merged PR through #113 by Conventional Commits scope, falling back to changed-file paths under each package's directory, and add Keep a Changelog entries to whichever of the three packages each PR actually touched, under Unreleased / 0.21.0 / 0.20.0 as applicable. typescript-config's 0.20.0 section only records the lints-config migration note per #106's policy, since its own pre-migration history is issue #108's concern. Refs #107 --- packages/sea-builder/CHANGELOG.md | 34 +++++++++++++++++++++++++ packages/typescript-config/CHANGELOG.md | 24 +++++++++++++++++ packages/vite-lib-config/CHANGELOG.md | 31 ++++++++++++++++++++++ 3 files changed, 89 insertions(+) diff --git a/packages/sea-builder/CHANGELOG.md b/packages/sea-builder/CHANGELOG.md index 4dec5d8..6ef16d1 100644 --- a/packages/sea-builder/CHANGELOG.md +++ b/packages/sea-builder/CHANGELOG.md @@ -8,3 +8,37 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +### Added + +- `CHANGELOG.md` (#112). + +### Changed + +- Bumped the `cpy-cli` devDependency to v7 (#41). +- Bumped the `semver` dependency to `^7.8.1` (#42). +- Bumped dependencies via a grouped Dependabot update (#44). +- Bumped the `undici` devDependency to v7.24.0 (#45). +- Bumped the `undici` devDependency to v7.28.0 (#66). +- Removed the unused, exact-pinned `undici` devDependency (#75). +- **Breaking:** migrated the Node.js baseline from LTS Iron (v20) to + LTS Jod (v22), and pnpm to v11 (#88). +- Bumped the `typescript` devDependency to `~6.0.3` (#113). + +### Fixed + +- Restored CI signal on feature branches and pull requests, and + aligned the `@vitest/coverage-v8` peer with `vitest` v4 (#68). +- Fixed the `env` shebang with a multi-word argument on Linux by + passing it with `-S` (#71). +- Verified downloaded Node.js archives against their published + checksum before caching, and stopped writing directly into the + permanent download cache (#72). +- Stopped `devPreinstall` from executing unpinned `pnpm dlx` packages + (#76). + +## [0.20.0] - 2025-06-30 + +### Added + +- Initial release (#2). diff --git a/packages/typescript-config/CHANGELOG.md b/packages/typescript-config/CHANGELOG.md index 4dec5d8..f210328 100644 --- a/packages/typescript-config/CHANGELOG.md +++ b/packages/typescript-config/CHANGELOG.md @@ -8,3 +8,27 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +### Added + +- `CHANGELOG.md` (#112). + +### Changed + +- Bumped the `cpy-cli` devDependency to v7 (#41). +- **Breaking:** migrated the Node.js baseline from LTS Iron (v20) to + LTS Jod (v22), and pnpm to v11 (#88). +- Bumped the `typescript` devDependency to `~6.0.3` (#113). + +## [0.21.0] - 2025-10-03 + +### Changed + +- Improved the TypeScript configuration (#19). + +## [0.20.0] - 2025-06-30 + +### Added + +- Migrated from `kurone-kito/lints-config`; see below for its history + prior to this release (#2). diff --git a/packages/vite-lib-config/CHANGELOG.md b/packages/vite-lib-config/CHANGELOG.md index 4dec5d8..f0fcedd 100644 --- a/packages/vite-lib-config/CHANGELOG.md +++ b/packages/vite-lib-config/CHANGELOG.md @@ -8,3 +8,34 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +### Added + +- `CHANGELOG.md` (#112). + +### Changed + +- Bumped the `cpy-cli` devDependency to v7 (#41). +- Bumped dependencies via a grouped Dependabot update (#44). +- **Breaking:** migrated the Node.js baseline from LTS Iron (v20) to + LTS Jod (v22), and pnpm to v11 (#88). +- Bumped the `typescript` devDependency to `~6.0.3` (#113). + +### Fixed + +- Restored CI signal on feature branches and pull requests, and + aligned the `@vitest/coverage-v8` peer with `vitest` v4 (#68). +- Corrected published JSDoc that had the shebang and library-mode + build branches inverted (#70). + +## [0.21.0] - 2025-10-03 + +### Added + +- Added a TypeDoc-based API documentation generation pipeline (#19). + +## [0.20.0] - 2025-06-30 + +### Added + +- Initial release (#2). From 6b62dd1add51d1fff9b16780016e38f34352918c Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Mon, 10 Aug 2026 18:33:46 +0900 Subject: [PATCH 02/10] fix(changelog): fix findings from review on the release-history backfill Copilot and Chatgpt-codex flagged three findings on PR #114: (1) typescript-config's migration note referenced content further down the file that does not exist yet, until #108 backfills it -- point at that tracking issue instead; (2) sea-builder was missing a 0.21.0 section even though PR #19 bumped its listr2 dependency and version, verified against the actual file diff; (3) #45's changelog entry duplicated #44's undici bump -- #45's merge commit has an empty diff against its first parent, confirmed with git diff, since the same change had already landed by the time it merged. Refs #107 --- packages/sea-builder/CHANGELOG.md | 7 ++++++- packages/typescript-config/CHANGELOG.md | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/packages/sea-builder/CHANGELOG.md b/packages/sea-builder/CHANGELOG.md index 6ef16d1..c8d6705 100644 --- a/packages/sea-builder/CHANGELOG.md +++ b/packages/sea-builder/CHANGELOG.md @@ -18,7 +18,6 @@ project adheres to - Bumped the `cpy-cli` devDependency to v7 (#41). - Bumped the `semver` dependency to `^7.8.1` (#42). - Bumped dependencies via a grouped Dependabot update (#44). -- Bumped the `undici` devDependency to v7.24.0 (#45). - Bumped the `undici` devDependency to v7.28.0 (#66). - Removed the unused, exact-pinned `undici` devDependency (#75). - **Breaking:** migrated the Node.js baseline from LTS Iron (v20) to @@ -37,6 +36,12 @@ project adheres to - Stopped `devPreinstall` from executing unpinned `pnpm dlx` packages (#76). +## [0.21.0] - 2025-10-03 + +### Changed + +- Bumped the `listr2` dependency to `^9.0.4` (#19). + ## [0.20.0] - 2025-06-30 ### Added diff --git a/packages/typescript-config/CHANGELOG.md b/packages/typescript-config/CHANGELOG.md index f210328..6a2fbb6 100644 --- a/packages/typescript-config/CHANGELOG.md +++ b/packages/typescript-config/CHANGELOG.md @@ -30,5 +30,5 @@ project adheres to ### Added -- Migrated from `kurone-kito/lints-config`; see below for its history - prior to this release (#2). +- Migrated from `kurone-kito/lints-config`; its pre-migration history + will be backfilled in a follow-up (#108) (#2). From 72e5ac544bd62f5efe0eadd3d1a2e4a2547d1e35 Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Mon, 10 Aug 2026 19:05:28 +0900 Subject: [PATCH 03/10] fix(changelog): clarify the adjacent PR references in the migration note Copilot flagged the 0.20.0 migration note on PR #114: two adjacent parenthetical PR references, "(#108) (#2)", read ambiguously. Move #2 next to the migration it documents and keep #108 with the follow-up clause it belongs to. Refs #107 --- packages/typescript-config/CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/typescript-config/CHANGELOG.md b/packages/typescript-config/CHANGELOG.md index 6a2fbb6..faa5856 100644 --- a/packages/typescript-config/CHANGELOG.md +++ b/packages/typescript-config/CHANGELOG.md @@ -30,5 +30,5 @@ project adheres to ### Added -- Migrated from `kurone-kito/lints-config`; its pre-migration history - will be backfilled in a follow-up (#108) (#2). +- Migrated from `kurone-kito/lints-config` (#2); its pre-migration + history will be backfilled in a follow-up (#108). From 3b1ee153a2cee95d2fbf748b29cebe487451e104 Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Mon, 10 Aug 2026 19:36:26 +0900 Subject: [PATCH 04/10] fix(changelog): name the breaking erasable-syntax restriction from #19 Chatgpt-codex flagged the 0.21.0 entry on PR #114: "Improved the TypeScript configuration" hid that #19 added erasableSyntaxOnly: true, verified against the actual tsconfig.json diff, a breaking change for any 0.20 consumer using syntax that needs emit-time transformation. Name the option and mark it breaking. Refs #107 --- packages/typescript-config/CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/typescript-config/CHANGELOG.md b/packages/typescript-config/CHANGELOG.md index faa5856..9b642d0 100644 --- a/packages/typescript-config/CHANGELOG.md +++ b/packages/typescript-config/CHANGELOG.md @@ -24,7 +24,10 @@ project adheres to ### Changed -- Improved the TypeScript configuration (#19). +- **Breaking:** enabled `erasableSyntaxOnly`, which rejects TypeScript + syntax that requires emit-time transformation (enums, parameter + properties, legacy `namespace`/`module` with runtime code, etc.) + (#19). ## [0.20.0] - 2025-06-30 From 0cc88078476f82a5c1e19c5297195ec9f351b48a Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Mon, 10 Aug 2026 20:06:56 +0900 Subject: [PATCH 05/10] fix(changelog): state the exact engines floor tightened by #88 Chatgpt-codex flagged the shared Breaking entry on PR #114: it only described dropping Node.js 20, hiding that #88 also raised the floor within Node.js 22/24 and dropped Node.js 25 entirely, verified against the actual engines.node diff in all three package.json files. State the exact before/after ranges in each of the three CHANGELOGs. Refs #107 --- packages/sea-builder/CHANGELOG.md | 6 ++++-- packages/typescript-config/CHANGELOG.md | 6 ++++-- packages/vite-lib-config/CHANGELOG.md | 6 ++++-- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/packages/sea-builder/CHANGELOG.md b/packages/sea-builder/CHANGELOG.md index c8d6705..376cf15 100644 --- a/packages/sea-builder/CHANGELOG.md +++ b/packages/sea-builder/CHANGELOG.md @@ -20,8 +20,10 @@ project adheres to - Bumped dependencies via a grouped Dependabot update (#44). - Bumped the `undici` devDependency to v7.28.0 (#66). - Removed the unused, exact-pinned `undici` devDependency (#75). -- **Breaking:** migrated the Node.js baseline from LTS Iron (v20) to - LTS Jod (v22), and pnpm to v11 (#88). +- **Breaking:** raised the `engines.node` floor from + `^20.11 || ^22 || >=24` to `^22.23.1 || ^24.2.0 || >=26.0.0`, + dropping Node.js 20, Node.js 22 below 22.23.1, Node.js 24 below + 24.2.0, and every Node.js 25 release; bumped pnpm to v11 (#88). - Bumped the `typescript` devDependency to `~6.0.3` (#113). ### Fixed diff --git a/packages/typescript-config/CHANGELOG.md b/packages/typescript-config/CHANGELOG.md index 9b642d0..af377a8 100644 --- a/packages/typescript-config/CHANGELOG.md +++ b/packages/typescript-config/CHANGELOG.md @@ -16,8 +16,10 @@ project adheres to ### Changed - Bumped the `cpy-cli` devDependency to v7 (#41). -- **Breaking:** migrated the Node.js baseline from LTS Iron (v20) to - LTS Jod (v22), and pnpm to v11 (#88). +- **Breaking:** raised the `engines.node` floor from + `^20.11 || ^22 || >=24` to `^22.23.1 || ^24.2.0 || >=26.0.0`, + dropping Node.js 20, Node.js 22 below 22.23.1, Node.js 24 below + 24.2.0, and every Node.js 25 release; bumped pnpm to v11 (#88). - Bumped the `typescript` devDependency to `~6.0.3` (#113). ## [0.21.0] - 2025-10-03 diff --git a/packages/vite-lib-config/CHANGELOG.md b/packages/vite-lib-config/CHANGELOG.md index f0fcedd..e03e016 100644 --- a/packages/vite-lib-config/CHANGELOG.md +++ b/packages/vite-lib-config/CHANGELOG.md @@ -17,8 +17,10 @@ project adheres to - Bumped the `cpy-cli` devDependency to v7 (#41). - Bumped dependencies via a grouped Dependabot update (#44). -- **Breaking:** migrated the Node.js baseline from LTS Iron (v20) to - LTS Jod (v22), and pnpm to v11 (#88). +- **Breaking:** raised the `engines.node` floor from + `^20.11 || ^22 || >=24` to `^22.23.1 || ^24.2.0 || >=26.0.0`, + dropping Node.js 20, Node.js 22 below 22.23.1, Node.js 24 below + 24.2.0, and every Node.js 25 release; bumped pnpm to v11 (#88). - Bumped the `typescript` devDependency to `~6.0.3` (#113). ### Fixed From 893c1ebf3086ee9a502ead3d1ba157622b518352 Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Mon, 10 Aug 2026 20:36:30 +0900 Subject: [PATCH 06/10] fix(changelog): document the raised vite-lib-config build target Chatgpt-codex flagged a second breaking change from #88 on PR #114, distinct from the engines.node floor: packages/vite-lib-config/src/ vite.mts's shared viteConfig raised its Vite build target from node20.11 to node22.23, verified against the actual diff. This affects the compiled output syntax of every package built through that shared config, including this repository's own sea-builder, independent of which Node.js version runs the build itself. Refs #107 --- packages/vite-lib-config/CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/vite-lib-config/CHANGELOG.md b/packages/vite-lib-config/CHANGELOG.md index e03e016..e3fd8ba 100644 --- a/packages/vite-lib-config/CHANGELOG.md +++ b/packages/vite-lib-config/CHANGELOG.md @@ -21,6 +21,11 @@ project adheres to `^20.11 || ^22 || >=24` to `^22.23.1 || ^24.2.0 || >=26.0.0`, dropping Node.js 20, Node.js 22 below 22.23.1, Node.js 24 below 24.2.0, and every Node.js 25 release; bumped pnpm to v11 (#88). +- **Breaking:** raised the shared `viteConfig`'s Vite build target + from `node20.11` to `node22.23`. Any package built through this + config — including this repository's own `sea-builder` — may now + emit syntax unsupported on Node.js 20, even when the build itself + runs on a supported Node.js version (#88). - Bumped the `typescript` devDependency to `~6.0.3` (#113). ### Fixed From 493b7ce844f322bd5e74bece3cb9dac4183a5377 Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Mon, 10 Aug 2026 21:05:47 +0900 Subject: [PATCH 07/10] fix(changelog): document vite-lib-config's 0.21.0 dependency bumps Chatgpt-codex flagged that the 0.21.0 section on PR #114 only recorded the TypeDoc pipeline, omitting that #19 also bumped the runtime type-fest and vite dependencies, verified against the actual package.json diff. type-fest jumped a major version and is used by the exported ViteConfigOptions type. Refs #107 --- packages/vite-lib-config/CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/vite-lib-config/CHANGELOG.md b/packages/vite-lib-config/CHANGELOG.md index e3fd8ba..c0671d4 100644 --- a/packages/vite-lib-config/CHANGELOG.md +++ b/packages/vite-lib-config/CHANGELOG.md @@ -41,6 +41,12 @@ project adheres to - Added a TypeDoc-based API documentation generation pipeline (#19). +### Changed + +- Bumped the `type-fest` dependency to `^5.0.1` (a major bump; used + by the exported `ViteConfigOptions` type) and `vite` to `^7.1.9` + (#19). + ## [0.20.0] - 2025-06-30 ### Added From a7603b69eb85c1e6ae0d78d4db0ea03dc092cbbc Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Mon, 10 Aug 2026 21:13:49 +0900 Subject: [PATCH 08/10] fix(changelog): document remaining #19 dep bumps and #44 specifics Proactively audited every entry-bearing PR (#19, #41, #42, #44, #66, #70-#76, #88) against actual package.json diffs, applying the same "runtime dep / breaking config / vague wording" lens Codex used across five prior review rounds, instead of waiting for another round-trip. Found: #19 also bumped cpy-cli and typescript devDependencies in all three target packages (plus type-fest and undici for sea-builder), none previously recorded under 0.21.0. Also replaced the vague "grouped Dependabot update (#44)" wording in sea-builder and vite-lib-config with the actual packages/versions it bumped, matching this backfill's established granularity for every other dependency bump entry. Refs #107 --- packages/sea-builder/CHANGELOG.md | 6 +++++- packages/typescript-config/CHANGELOG.md | 2 ++ packages/vite-lib-config/CHANGELOG.md | 4 +++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/packages/sea-builder/CHANGELOG.md b/packages/sea-builder/CHANGELOG.md index 376cf15..c180e8d 100644 --- a/packages/sea-builder/CHANGELOG.md +++ b/packages/sea-builder/CHANGELOG.md @@ -17,7 +17,8 @@ project adheres to - Bumped the `cpy-cli` devDependency to v7 (#41). - Bumped the `semver` dependency to `^7.8.1` (#42). -- Bumped dependencies via a grouped Dependabot update (#44). +- Bumped the `undici` devDependency to `7.24.0` and `vitest` to + `^4.1.0` (#44). - Bumped the `undici` devDependency to v7.28.0 (#66). - Removed the unused, exact-pinned `undici` devDependency (#75). - **Breaking:** raised the `engines.node` floor from @@ -43,6 +44,9 @@ project adheres to ### Changed - Bumped the `listr2` dependency to `^9.0.4` (#19). +- Bumped the `cpy-cli` devDependency to `^6.0.0`, `type-fest` to + `^5.0.1` (a major bump), `typescript` to `~5.9.3`, and `undici` to + `7.16.0` (#19). ## [0.20.0] - 2025-06-30 diff --git a/packages/typescript-config/CHANGELOG.md b/packages/typescript-config/CHANGELOG.md index af377a8..3fa2816 100644 --- a/packages/typescript-config/CHANGELOG.md +++ b/packages/typescript-config/CHANGELOG.md @@ -30,6 +30,8 @@ project adheres to syntax that requires emit-time transformation (enums, parameter properties, legacy `namespace`/`module` with runtime code, etc.) (#19). +- Bumped the `cpy-cli` devDependency to `^6.0.0` and `typescript` to + `~5.9.3` (#19). ## [0.20.0] - 2025-06-30 diff --git a/packages/vite-lib-config/CHANGELOG.md b/packages/vite-lib-config/CHANGELOG.md index c0671d4..deeef57 100644 --- a/packages/vite-lib-config/CHANGELOG.md +++ b/packages/vite-lib-config/CHANGELOG.md @@ -16,7 +16,7 @@ project adheres to ### Changed - Bumped the `cpy-cli` devDependency to v7 (#41). -- Bumped dependencies via a grouped Dependabot update (#44). +- Bumped the `vitest` devDependency to `^4.1.0` (#44). - **Breaking:** raised the `engines.node` floor from `^20.11 || ^22 || >=24` to `^22.23.1 || ^24.2.0 || >=26.0.0`, dropping Node.js 20, Node.js 22 below 22.23.1, Node.js 24 below @@ -46,6 +46,8 @@ project adheres to - Bumped the `type-fest` dependency to `^5.0.1` (a major bump; used by the exported `ViteConfigOptions` type) and `vite` to `^7.1.9` (#19). +- Bumped the `cpy-cli` devDependency to `^6.0.0` and `typescript` to + `~5.9.3` (#19). ## [0.20.0] - 2025-06-30 From a62cd5bbb70aa37841bafdf97526a04a322ec239 Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Mon, 10 Aug 2026 21:43:22 +0900 Subject: [PATCH 09/10] fix(changelog): document ts 5.8 floor, #88 typedoc fix, full #70 scope Chatgpt-codex flagged three more gaps in the reviewed release notes, each verified against the actual PR diff before accepting: - typescript-config's peerDependencies still advertises `>=5.7.x`, but erasableSyntaxOnly (enabled in #19) requires TypeScript 5.8+; noted the effective floor so consumers on 5.7 know to upgrade. - #88 also fixed vite-lib-config's TypeDoc build (resolving typedoc-plugin-markdown under pnpm's virtual store) and added working external link mappings for Vite symbols in the generated docs, previously undocumented. - #70's JSDoc fix entry only mentioned the shebang/library-mode branch inversion; broadened it to cover the filtered-entries and mixed-entries behavior it also documented, and vitestConfig's wholesale rewrite from a copy-pasted, incorrect description to its actual test.environment merge behavior. Refs #107 --- packages/typescript-config/CHANGELOG.md | 5 ++++- packages/vite-lib-config/CHANGELOG.md | 15 +++++++++++++-- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/packages/typescript-config/CHANGELOG.md b/packages/typescript-config/CHANGELOG.md index 3fa2816..905b631 100644 --- a/packages/typescript-config/CHANGELOG.md +++ b/packages/typescript-config/CHANGELOG.md @@ -29,7 +29,10 @@ project adheres to - **Breaking:** enabled `erasableSyntaxOnly`, which rejects TypeScript syntax that requires emit-time transformation (enums, parameter properties, legacy `namespace`/`module` with runtime code, etc.) - (#19). + (#19). This option requires TypeScript 5.8+; the advertised + `peerDependencies` range (`>=5.7.x`) was not updated, so consumers + on TypeScript 5.7 must upgrade their compiler to avoid an unknown + compiler option error. - Bumped the `cpy-cli` devDependency to `^6.0.0` and `typescript` to `~5.9.3` (#19). diff --git a/packages/vite-lib-config/CHANGELOG.md b/packages/vite-lib-config/CHANGELOG.md index deeef57..aafeec6 100644 --- a/packages/vite-lib-config/CHANGELOG.md +++ b/packages/vite-lib-config/CHANGELOG.md @@ -32,8 +32,19 @@ project adheres to - Restored CI signal on feature branches and pull requests, and aligned the `@vitest/coverage-v8` peer with `vitest` v4 (#68). -- Corrected published JSDoc that had the shebang and library-mode - build branches inverted (#70). +- Corrected the published API documentation for `viteConfig` and + `vitestConfig`. `viteConfig`'s JSDoc had the shebang/library-mode + branches inverted and omitted that nonexistent entries are filtered + out first (an empty result after filtering yields an empty + configuration) and that a mixed set of entries falls into library + mode; `vitestConfig`'s JSDoc had incorrectly described the same + shebang/library-mode logic instead of its actual behavior — merging + a `test.environment: 'node'` default under the `viteConfig` built + for the same entry point (#70). +- Resolved `typedoc-plugin-markdown` explicitly to avoid a lookup + failure under pnpm's global virtual store, and added external link + mappings for Vite's `UserConfig`/`mergeConfig` symbols in the + generated API docs (#88). ## [0.21.0] - 2025-10-03 From 8be2cd238941dfaff4c8b4fad814062cb79a15ad Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Mon, 10 Aug 2026 22:12:02 +0900 Subject: [PATCH 10/10] fix(changelog): add sea-builder's #19 vite devDependency bump Chatgpt-codex flagged that the 0.21.0 entry enumerating #19's other build-time dependency bumps for sea-builder omitted vite ^7.0.0 to ^7.1.9, verified against the actual package.json diff. Refs #107 --- packages/sea-builder/CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/sea-builder/CHANGELOG.md b/packages/sea-builder/CHANGELOG.md index c180e8d..c49f3ca 100644 --- a/packages/sea-builder/CHANGELOG.md +++ b/packages/sea-builder/CHANGELOG.md @@ -45,8 +45,8 @@ project adheres to - Bumped the `listr2` dependency to `^9.0.4` (#19). - Bumped the `cpy-cli` devDependency to `^6.0.0`, `type-fest` to - `^5.0.1` (a major bump), `typescript` to `~5.9.3`, and `undici` to - `7.16.0` (#19). + `^5.0.1` (a major bump), `typescript` to `~5.9.3`, `undici` to + `7.16.0`, and `vite` to `^7.1.9` (#19). ## [0.20.0] - 2025-06-30