Skip to content

Commit

Permalink
Version Packages (#769)
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 Apr 18, 2023
1 parent 56d56c4 commit 8b6d285
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 44 deletions.
5 changes: 0 additions & 5 deletions .changeset/dry-pillows-begin.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/three-hotels-wonder.md

This file was deleted.

33 changes: 0 additions & 33 deletions .changeset/weak-seals-admire.md

This file was deleted.

40 changes: 40 additions & 0 deletions packages/sku/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,45 @@
# sku

## 11.9.0

### Minor Changes

- Re-export `Meta` and `StoryObj` types from `@storybook/react` ([#773](https://github.com/seek-oss/sku/pull/773))

The `Meta` and `StoryObj` types are now re-exported under `sku/@storybook/react`.

These types are useful for typing [CSF 3 stories] which are the new recommended way of writing stories.

**EXAMPLE USAGE**:

```ts
import type { Meta } from 'sku/@storybook/react';

import { MyComponent } from './MyComponent';

const meta: Meta<typeof MyComponent> = {
title: 'Path/To/MyComponent',
component: MyComponent,
};
export default meta;

type Story = StoryObj<typeof MyComponent>;

export const Basic: Story = {};

export const WithProp: Story = {
render: () => <MyComponent prop="value" />,
};
```

[CSF 3 stories]: https://storybook.js.org/docs/react/api/csf

### Patch Changes

- Remove dependency on `fs-extra` ([#770](https://github.com/seek-oss/sku/pull/770))

- Update dependencies ([#768](https://github.com/seek-oss/sku/pull/768))

## 11.8.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sku/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sku",
"version": "11.8.2",
"version": "11.9.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 8b6d285

Please sign in to comment.