From c45677ed489cfe7dc5678a5fe116859b30a7c3bc Mon Sep 17 00:00:00 2001 From: Aaron Klinker Date: Fri, 2 Feb 2024 16:19:33 -0600 Subject: [PATCH] Update changelog --- CHANGELOG.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a26faa774..12679e418 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,7 +20,28 @@ #### ⚠️ Breaking Changes -- ⚠️ ESM background support ([#398](https://github.com/wxt-dev/wxt/pull/398)) +In [#398](https://github.com/wxt-dev/wxt/pull/398), HTML pages' JS entrypoints in the output directory have been moved. Unless you're doing some kind of post-build work referencing files, you don't have to make any changes. Moving files like this has not historically increased review times or triggered in-depth reviews in the stores. + +- Before: + ``` + .output/ + / + chunks/ + some-shared-chunk-.js + popup-.js + popup.html + ``` +- After: + ``` + .output/ + / + chunks/ + some-shared-chunk-.js + popup.html + popup.js + ``` + +This effects all HTML files, not just the Popup. The hash has been removed, and it's been moved to the root of the build target folder, not inside the `chunks/` directory. ## v0.15.4