diff --git a/.changeset/eight-phones-worry.md b/.changeset/eight-phones-worry.md deleted file mode 100644 index 81f03003e..000000000 --- a/.changeset/eight-phones-worry.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -'sku': minor ---- - -**Playroom:** Update to v0.22.0, add `playroomScope` option - -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() - } -} -``` diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a665fa23..34fcdf916 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/package.json b/package.json index 4f10e65db..d5547563a 100644 --- a/package.json +++ b/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": {