zeplin / cli-connect-storybook-plugin

Zeplin CLI plugin to generate Storybook links for Zeplin components
MIT License
20 stars 3 forks source link

Allow working without a Storybook instance #35

Closed yuqu closed 3 years ago

yuqu commented 3 years ago

This PR adds a new plugin option to allow the plugin to work without connecting to any Storybook instance. This will allow plugin users to benefit from manual story configuration.

{
    ...
    "plugins" : [{
        "name": "@zeplin/cli-connect-storybook-plugin",
        "config": {
            "url": "https://storybook.example.com",
            "fetchStories": false,
            "format": "new"
        }
    }],
    ...
}