diff --git a/plugins/woocommerce-admin/bin/starter-pack/_package.json b/plugins/woocommerce-admin/bin/starter-pack/_package.json index b9c63a81abc..8090b5e120d 100644 --- a/plugins/woocommerce-admin/bin/starter-pack/_package.json +++ b/plugins/woocommerce-admin/bin/starter-pack/_package.json @@ -22,6 +22,6 @@ "devDependencies": { "@wordpress/scripts": "^12.2.1", "@woocommerce/eslint-plugin": "1.1.0", - "@woocommerce/dependency-extraction-webpack-plugin": "1.3.0" + "@woocommerce/dependency-extraction-webpack-plugin": "1.4.0" } } diff --git a/plugins/woocommerce-admin/packages/dependency-extraction-webpack-plugin/CHANGELOG.md b/plugins/woocommerce-admin/packages/dependency-extraction-webpack-plugin/CHANGELOG.md index 2c854955bbb..b8cb281ba11 100644 --- a/plugins/woocommerce-admin/packages/dependency-extraction-webpack-plugin/CHANGELOG.md +++ b/plugins/woocommerce-admin/packages/dependency-extraction-webpack-plugin/CHANGELOG.md @@ -1,7 +1,12 @@ +# 1.4.0 + +- Add `@woocommerce/settings` to list of packages. + # 1.3.0 -- Remove `@woocommerce/block-settings` from internal maps and use `@woocommerce/settings` instead. This external exposes the `getSetting` API interface which encourages read only use of the global. -- Remove explicitly scoping externals to `this`. The plugin compiler will take care of scoping the external to the correct context and `this` is not correct in some contexts consuming this package. +- Remove `@woocommerce/block-settings` from internal maps and use `@woocommerce/settings` instead. This external exposes the `getSetting` API interface which encourages read only use of the global. +- Remove explicitly scoping externals to `this`. The plugin compiler will take care of scoping the external to the correct context and `this` is not correct in some contexts consuming this package. + # 1.2.0 - Add WooCommerce Blocks Dependencies. #6228 diff --git a/plugins/woocommerce-admin/packages/dependency-extraction-webpack-plugin/assets/packages.js b/plugins/woocommerce-admin/packages/dependency-extraction-webpack-plugin/assets/packages.js index fc6188ca9f8..70d699fa102 100644 --- a/plugins/woocommerce-admin/packages/dependency-extraction-webpack-plugin/assets/packages.js +++ b/plugins/woocommerce-admin/packages/dependency-extraction-webpack-plugin/assets/packages.js @@ -16,5 +16,5 @@ module.exports = [ // wc-blocks packages '@woocommerce/blocks-checkout', '@woocommerce/blocks-registry', - '@woocommerce/blocks-settings', + '@woocommerce/settings', ]; diff --git a/plugins/woocommerce-admin/packages/dependency-extraction-webpack-plugin/package.json b/plugins/woocommerce-admin/packages/dependency-extraction-webpack-plugin/package.json index 5a52e4a2f6c..a5c59a7d00c 100644 --- a/plugins/woocommerce-admin/packages/dependency-extraction-webpack-plugin/package.json +++ b/plugins/woocommerce-admin/packages/dependency-extraction-webpack-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@woocommerce/dependency-extraction-webpack-plugin", - "version": "1.3.0", + "version": "1.4.0", "description": "WooCommerce Dependency Extraction Webpack Plugin", "author": "Automattic", "license": "GPL-2.0-or-later",