3 Commits

Author SHA1 Message Date
ThibaudAv
bda825b59f
feat: start and build storybook by ng Builder with only tsConfig
should allow project with only lib, without `@angular-devkit/build-angular:browser` to complete the configuration, to work more simply
2021-09-03 14:01:36 +02:00
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
ThibaudAv
1ce3a7494f feat(angular): add angular builder to start storybook
The builder allows to add a "architect" in angular.json to start storybook
config ex :
```
"storybook": {
 "builder": "@storybook/angular:start-storybook",
  "options": {
  "browserTarget": "angular-cli:build",
  "port": 4400
}
```
cmd : `ng run angular-cli:storybook`

With this solution it is possible to have several angular projects using different assets and style
2021-06-01 16:44:52 +02:00