15 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
Thibaud Av
645c11a923
fix(angular): remove styles and stylePreprocessorOptions if is not defined in builder config 2021-11-25 13:24:03 +01:00
Thibaud Av
57a96accaf
fix(angular): change the resolution order of the tsconfig.json config 2021-11-24 11:51:14 +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
a032a60d31
refactor(angular): remove staticDir for angular-builder because it's deprecated
Use 'staticDirs' Storybook Configuration option instead (main.js)
2021-11-10 19:32:07 +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
Michael Shilman
494d432e4c
Merge branch 'next' into angular/fix-builder-error-handler 2021-09-08 02:07:40 +08:00
Thibaud Av
dce3f120e8
fix(angular): add error handler for build standalone 2021-09-03 16:11:16 +02: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
4f95e5b363 fix(angular): intentionally never complete start builder, leaving the process running 2021-06-10 09:20:00 +02:00
ThibaudAv
891efaddb6 feat(angular): add compodoc for storybook start builder 2021-06-07 19:30:51 +02:00
Michael Shilman
ccc4ef1393 Fix deepscan 2021-06-01 23:12:44 +08:00
ThibaudAv
4b9596dea7 fixup! feat(angular): add angular builder to start storybook 2021-06-01 16:44:52 +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