add settings and bump version (https://github.com/woocommerce/woocommerce-admin/pull/6331)
This commit is contained in:
parent
2780129bad
commit
07c4404f16
|
@ -22,6 +22,6 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@wordpress/scripts": "^12.2.1",
|
"@wordpress/scripts": "^12.2.1",
|
||||||
"@woocommerce/eslint-plugin": "1.1.0",
|
"@woocommerce/eslint-plugin": "1.1.0",
|
||||||
"@woocommerce/dependency-extraction-webpack-plugin": "1.3.0"
|
"@woocommerce/dependency-extraction-webpack-plugin": "1.4.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,12 @@
|
||||||
|
# 1.4.0
|
||||||
|
|
||||||
|
- Add `@woocommerce/settings` to list of packages.
|
||||||
|
|
||||||
# 1.3.0
|
# 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 `@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 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
|
# 1.2.0
|
||||||
|
|
||||||
- Add WooCommerce Blocks Dependencies. #6228
|
- Add WooCommerce Blocks Dependencies. #6228
|
||||||
|
|
|
@ -16,5 +16,5 @@ module.exports = [
|
||||||
// wc-blocks packages
|
// wc-blocks packages
|
||||||
'@woocommerce/blocks-checkout',
|
'@woocommerce/blocks-checkout',
|
||||||
'@woocommerce/blocks-registry',
|
'@woocommerce/blocks-registry',
|
||||||
'@woocommerce/blocks-settings',
|
'@woocommerce/settings',
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@woocommerce/dependency-extraction-webpack-plugin",
|
"name": "@woocommerce/dependency-extraction-webpack-plugin",
|
||||||
"version": "1.3.0",
|
"version": "1.4.0",
|
||||||
"description": "WooCommerce Dependency Extraction Webpack Plugin",
|
"description": "WooCommerce Dependency Extraction Webpack Plugin",
|
||||||
"author": "Automattic",
|
"author": "Automattic",
|
||||||
"license": "GPL-2.0-or-later",
|
"license": "GPL-2.0-or-later",
|
||||||
|
|
Loading…
Reference in New Issue