Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #769

Merged
merged 1 commit into from
Apr 18, 2023
Merged

Version Packages #769

merged 1 commit into from
Apr 18, 2023

Conversation

seek-oss-ci
Copy link
Contributor

@seek-oss-ci seek-oss-ci commented Apr 14, 2023

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated.

Releases

sku@11.9.0

Minor Changes

  • Re-export Meta and StoryObj types from @storybook/react (#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:

    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" />,
    };

Patch Changes

  • Remove dependency on fs-extra (#770)

  • Update dependencies (#768)

@seek-oss-ci seek-oss-ci requested a review from a team as a code owner April 14, 2023 00:54
@seek-oss-ci seek-oss-ci force-pushed the changeset-release/master branch 3 times, most recently from 346c6dd to a8f9c26 Compare April 17, 2023 23:14
@askoufis askoufis enabled auto-merge (squash) April 18, 2023 04:27
@askoufis askoufis merged commit 8b6d285 into master Apr 18, 2023
@askoufis askoufis deleted the changeset-release/master branch April 18, 2023 04:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants