Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Angular: Add angular builder to start + build storybook #15061

Merged
merged 4 commits into from
Jun 1, 2021
Merged

Commits on Jun 1, 2021

  1. 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
    ThibaudAV committed Jun 1, 2021
    Configuration menu
    Copy the full SHA
    1ce3a74 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4b9596d View commit details
    Browse the repository at this point in the history
  3. 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
    ThibaudAV committed Jun 1, 2021
    Configuration menu
    Copy the full SHA
    d14690c View commit details
    Browse the repository at this point in the history
  4. Fix deepscan

    shilman committed Jun 1, 2021
    Configuration menu
    Copy the full SHA
    ccc4ef1 View commit details
    Browse the repository at this point in the history