mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:11:11 +08:00
The builder allows to add a "architect" in angular.json to build storybook config ex : ``` "build-storybook": { "builder": "@storybook/angular:build-storybook", "options": { "browserTarget": "angular-cli:build" } } ``` cmd : `ng run angular-cli:build-storybook` With this solution it is possible to have several angular projects using different assets and style
15 lines
397 B
TypeScript
15 lines
397 B
TypeScript
import { CLIOptions, LoadOptions, BuilderOptions } from '@storybook/core-common';
|
|
|
|
export type StandaloneOptions = Partial<
|
|
CLIOptions &
|
|
LoadOptions &
|
|
BuilderOptions & {
|
|
mode?: 'static' | 'dev';
|
|
angularBrowserTarget: string;
|
|
}
|
|
>;
|
|
|
|
declare module '@storybook/angular/standalone' {
|
|
export default function buildStandalone(options: StandaloneOptions): Promise<unknown>;
|
|
}
|