From 00faac9c02c0dc20e00ea1c6b4ac00861da0083d Mon Sep 17 00:00:00 2001 From: sacr3dc0w Date: Mon, 6 Feb 2023 09:21:55 -0800 Subject: [PATCH] Resolve stale assets in dist folder not being discarded --- CHANGELOG.md | 1 + webpack.common.js | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f384eccb00..0be547b926 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Remove xlink attributes on svg [#2322](https://github.com/bigcommerce/cornerstone/pull/2322) - form.serialize() ignores dropdown option elements that have the disabled attribute [#2326](https://github.com/bigcommerce/cornerstone/pull/2326) - Extended BigCommerce.accountPayments app initialization interface [#2317](https://github.com/bigcommerce/cornerstone/pull/2317) +- Resolve stale assets in dist folder not being discarded [#2329](https://github.com/bigcommerce/cornerstone/pull/2329) ## 6.8.0 (01-26-2023) - Add remote_api_scripts into cart/preview template to let GA3 snippet to fire the Product Added event, when clicking Add to cart button on Product detail page and rendering the response in popup. [#2281](https://github.com/bigcommerce/cornerstone/pull/2281) diff --git a/webpack.common.js b/webpack.common.js index 47465fc366..5112d8019f 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -58,7 +58,6 @@ module.exports = { }, plugins: [ new CleanWebpackPlugin({ - cleanOnceBeforeBuildPatterns: ['assets/dist'], verbose: false, watch: false, }),