From d36d55995abccb2e24c638e0b9346282a6982af4 Mon Sep 17 00:00:00 2001 From: seek-oss-ci <34733141+seek-oss-ci@users.noreply.github.com> Date: Wed, 14 Oct 2020 10:05:25 +1100 Subject: [PATCH] Version Packages (#540) --- .changeset/eight-phones-worry.md | 29 ----------------------------- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ package.json | 2 +- 3 files changed, 31 insertions(+), 30 deletions(-) delete mode 100644 .changeset/eight-phones-worry.md 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": {