Skip to content

Commit

Permalink
Version Packages (#293)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
seek-oss-ci and github-actions[bot] committed Aug 1, 2023
1 parent a044864 commit 9de7d5e
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 24 deletions.
23 changes: 0 additions & 23 deletions .changeset/tidy-cows-complain.md

This file was deleted.

24 changes: 24 additions & 0 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down

0 comments on commit 9de7d5e

Please sign in to comment.