@storybook/core-webpack 8.3.0-alpha.6 → 8.3.0-alpha.7

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -5
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -23,13 +23,11 @@ type BuilderOptions = {
23
23
  };
24
24
  type StorybookConfig<TWebpackConfiguration = WebpackConfiguration> = StorybookConfig$1 & {
25
25
  /**
26
- * Modify or return a custom Webpack config after the Storybook's default configuration
27
- * has run (mostly used by addons).
26
+ * Modify or return a custom Webpack config after the Storybook's default configuration has run
27
+ * (mostly used by addons).
28
28
  */
29
29
  webpack?: (config: TWebpackConfiguration, options: Options) => TWebpackConfiguration | Promise<TWebpackConfiguration>;
30
- /**
31
- * Modify or return a custom Webpack config after every addon has run.
32
- */
30
+ /** Modify or return a custom Webpack config after every addon has run. */
33
31
  webpackFinal?: (config: TWebpackConfiguration, options: Options) => TWebpackConfiguration | Promise<TWebpackConfiguration>;
34
32
  };
35
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/core-webpack",
3
- "version": "8.3.0-alpha.6",
3
+ "version": "8.3.0-alpha.7",
4
4
  "description": "Storybook framework-agnostic API",
5
5
  "keywords": [
6
6
  "storybook"
@@ -53,7 +53,7 @@
53
53
  "webpack": "5"
54
54
  },
55
55
  "peerDependencies": {
56
- "storybook": "^8.3.0-alpha.6"
56
+ "storybook": "^8.3.0-alpha.7"
57
57
  },
58
58
  "publishConfig": {
59
59
  "access": "public"