Skip to content

Commit

Permalink
Version Packages (#540)
Browse files Browse the repository at this point in the history
  • Loading branch information
seek-oss-ci committed Oct 13, 2020
1 parent 2ba5cfc commit d36d559
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 30 deletions.
29 changes: 0 additions & 29 deletions .changeset/eight-phones-worry.md

This file was deleted.

30 changes: 30 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,35 @@
# sku

## 10.7.0

### Minor Changes

- **Playroom:** Update to v0.22.0, add `playroomScope` option ([#539](https://github.com/seek-oss/sku/pull/539))

You can now use Playroom's new custom scope feature by providing a `playroomScope` file.

**EXAMPLE USAGE**

sku.config.js:

```js
module.exports = {
playroomScope: './playroom/useScope.ts',
};
```

useScope.ts:

```js
import { useToast } from 'braid-design-system';

export default function useScope() {
return {
showToast: useToast(),
};
}
```

## 10.6.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "sku",
"version": "10.6.0",
"version": "10.7.0",
"description": "Front-end development toolkit, powered by Webpack, Babel, CSS Modules, Less and Jest",
"main": "index.js",
"bin": {
Expand Down

0 comments on commit d36d559

Please sign in to comment.