storybook/app/angular/standalone.d.ts
ThibaudAv d14690c85f feat(angular): add angular builder to build storybook
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
2021-06-01 16:44:53 +02:00

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>;
}