@storybook/angular 9.0.0-alpha.4 → 9.0.0-alpha.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -62,9 +62,9 @@ exports.getWebpackConfig = async (baseConfig, { builderOptions, builderContext }
62
62
  ]);
63
63
  /** Merge baseConfig Webpack with angular-cli Webpack */
64
64
  const entry = [
65
+ ...(cliConfig.entry.polyfills ?? []),
65
66
  ...baseConfig.entry,
66
67
  ...(cliConfig.entry.styles ?? []),
67
- ...(cliConfig.entry.polyfills ?? []),
68
68
  ];
69
69
  // Don't use storybooks styling rules because we have to use rules created by @angular-devkit/build-angular
70
70
  // because @angular-devkit/build-angular created rules have include/exclude for global style files.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/angular",
3
- "version": "9.0.0-alpha.4",
3
+ "version": "9.0.0-alpha.5",
4
4
  "description": "Storybook for Angular: Develop Angular components in isolation with hot reloading.",
5
5
  "keywords": [
6
6
  "storybook",
@@ -53,8 +53,8 @@
53
53
  "prep": "rimraf dist && jiti ../../../scripts/prepare/tsc.ts"
54
54
  },
55
55
  "dependencies": {
56
- "@storybook/builder-webpack5": "9.0.0-alpha.4",
57
- "@storybook/core-webpack": "9.0.0-alpha.4",
56
+ "@storybook/builder-webpack5": "9.0.0-alpha.5",
57
+ "@storybook/core-webpack": "9.0.0-alpha.5",
58
58
  "@storybook/global": "^5.0.0",
59
59
  "@types/react": "^18.0.37",
60
60
  "@types/react-dom": "^18.0.11",
@@ -107,7 +107,7 @@
107
107
  "@angular/platform-browser": ">=15.0.0 < 20.0.0",
108
108
  "@angular/platform-browser-dynamic": ">=15.0.0 < 20.0.0",
109
109
  "rxjs": "^6.0.0 || ^7.4.0",
110
- "storybook": "^9.0.0-alpha.4",
110
+ "storybook": "^9.0.0-alpha.5",
111
111
  "typescript": "^4.9.0 || ^5.0.0",
112
112
  "zone.js": ">= 0.11.1 < 1.0.0"
113
113
  },