From 9de7d5ec663bdbdae3dc8084a68f442a86dd0438 Mon Sep 17 00:00:00 2001 From: seek-oss-ci <34733141+seek-oss-ci@users.noreply.github.com> Date: Tue, 1 Aug 2023 16:02:43 +1000 Subject: [PATCH] Version Packages (#293) Co-authored-by: github-actions[bot] --- .changeset/tidy-cows-complain.md | 23 ----------------------- CHANGELOG.md | 24 ++++++++++++++++++++++++ package.json | 2 +- 3 files changed, 25 insertions(+), 24 deletions(-) delete mode 100644 .changeset/tidy-cows-complain.md diff --git a/.changeset/tidy-cows-complain.md b/.changeset/tidy-cows-complain.md deleted file mode 100644 index 2e02f0e6..00000000 --- a/.changeset/tidy-cows-complain.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -'playroom': patch ---- - -Allow overriding Webpack module rules - -Consumers may have complex Webpack configurations that can clash with Playroom's. -In this case, it's useful to be able to override the module rules that Playroom defines. -For example, overriding loaders defined for CSS files: - -```js -// playroom.config.js -module.exports = { - webpackConfig: () => ({ - module: { - rules: [ - // use your own CSS loaders - { test: /\.css$/, use: ['style-loader', 'css-loader'] }, - ], - }, - }), -}; -``` diff --git a/CHANGELOG.md b/CHANGELOG.md index bfc172fa..909dbff5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # playroom +## 0.32.1 + +### Patch Changes + +- a044864: Allow overriding Webpack module rules + + Consumers may have complex Webpack configurations that can clash with Playroom's. + In this case, it's useful to be able to override the module rules that Playroom defines. + For example, overriding loaders defined for CSS files: + + ```js + // playroom.config.js + module.exports = { + webpackConfig: () => ({ + module: { + rules: [ + // use your own CSS loaders + { test: /\.css$/, use: ['style-loader', 'css-loader'] }, + ], + }, + }), + }; + ``` + ## 0.32.0 ### Minor Changes diff --git a/package.json b/package.json index 30c79729..9892cc1a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "playroom", - "version": "0.32.0", + "version": "0.32.1", "description": "Design with code, powered by your own component library", "main": "utils/index.js", "types": "utils/index.d.ts",