9 Commits

Author SHA1 Message Date
Norbert de Langen
89830ad763
change imports of types & interfaces to be clearly defined as type 2022-03-08 14:15:22 +01:00
Norbert de Langen
4f7ffcee33
stricter types 2022-01-29 14:43:48 +01:00
Thibaud Av
903595bae9
feat(angular): add styles and stylePreprocessorOptions to add dedicated styles config
Allow the angular project to set styles config without using `browserTarget` in order to rely on another builder's config.

Very useful in the case of a library where you don't have an application but you want to configure styles in storybook like an app
2021-11-12 21:12:14 +01:00
Thibaud Av
8704f84d29
feat(angular): add angularBuilderOptions to set some options
The goal is to be able to start sb without angularBrowserTarget to use styles
And also to allow nx to set BuilderOptions without `angularBuilderContext`
2021-11-10 19:32:08 +01:00
Thibaud Av
b9eaf4ba04
feat(angular): add getWebpackConfig for angular 12.2.x & 13.x.x
only work with angular storybook builder
2021-11-10 19:32:04 +01:00
ThibaudAv
1604b617a9
feat: start and build storybook witout browser-target
only tsConfig is required and can be directly given to storybook using new Angular builder for SB

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