UNPKG

@nx/storybook

Version:

The Nx Plugin for Storybook contains executors and generators for allowing your workspace to use the powerful Storybook integration testing & documenting capabilities.

16 lines (15 loc) 659 B
import { CreateDependencies, CreateNodes } from '@nx/devkit'; export interface StorybookPluginOptions { buildStorybookTargetName?: string; serveStorybookTargetName?: string; staticStorybookTargetName?: string; testStorybookTargetName?: string; buildDepsTargetName?: string; watchDepsTargetName?: string; } /** * @deprecated The 'createDependencies' function is now a no-op. This functionality is included in 'createNodesV2'. */ export declare const createDependencies: CreateDependencies; export declare const createNodes: CreateNodes<StorybookPluginOptions>; export declare const createNodesV2: CreateNodes<StorybookPluginOptions>;