@storybook/builder-webpack5 8.0.0-alpha.16 → 8.0.0-alpha.17
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.
- package/dist/index.d.ts +3 -3
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import webpack__default, { Configuration, Stats } from 'webpack';
|
|
2
2
|
import { O as Options$1, B as Builder } from './index.d-2cca0a69.js';
|
|
3
|
-
import { StorybookConfig, Options, BuilderResult as BuilderResult$1 } from '@storybook/core-webpack';
|
|
3
|
+
import { StorybookConfig, Options, BuilderResult as BuilderResult$1, TypescriptOptions as TypescriptOptions$1 } from '@storybook/core-webpack';
|
|
4
4
|
import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
|
|
5
5
|
import 'file-system-cache';
|
|
6
6
|
import 'express';
|
|
7
7
|
import 'http';
|
|
8
8
|
|
|
9
|
-
type TypeScriptOptionsBase =
|
|
9
|
+
type TypeScriptOptionsBase = Partial<TypescriptOptions$1>;
|
|
10
10
|
/**
|
|
11
11
|
* Options for TypeScript usage within Storybook.
|
|
12
12
|
*/
|
|
@@ -16,7 +16,7 @@ interface TypescriptOptions extends TypeScriptOptionsBase {
|
|
|
16
16
|
*/
|
|
17
17
|
checkOptions?: ConstructorParameters<typeof ForkTsCheckerWebpackPlugin>[0];
|
|
18
18
|
}
|
|
19
|
-
interface StorybookConfigWebpack extends
|
|
19
|
+
interface StorybookConfigWebpack extends Omit<StorybookConfig, 'webpack' | 'webpackFinal'> {
|
|
20
20
|
/**
|
|
21
21
|
* Modify or return a custom Webpack config after the Storybook's default configuration
|
|
22
22
|
* has run (mostly used by addons).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/builder-webpack5",
|
|
3
|
-
"version": "8.0.0-alpha.
|
|
3
|
+
"version": "8.0.0-alpha.17",
|
|
4
4
|
"description": "Storybook framework-agnostic API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook"
|
|
@@ -63,14 +63,14 @@
|
|
|
63
63
|
"prep": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/bundle.ts"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@storybook/channels": "8.0.0-alpha.
|
|
67
|
-
"@storybook/client-logger": "8.0.0-alpha.
|
|
68
|
-
"@storybook/core-common": "8.0.0-alpha.
|
|
69
|
-
"@storybook/core-events": "8.0.0-alpha.
|
|
70
|
-
"@storybook/core-webpack": "8.0.0-alpha.
|
|
71
|
-
"@storybook/node-logger": "8.0.0-alpha.
|
|
72
|
-
"@storybook/preview": "8.0.0-alpha.
|
|
73
|
-
"@storybook/preview-api": "8.0.0-alpha.
|
|
66
|
+
"@storybook/channels": "8.0.0-alpha.17",
|
|
67
|
+
"@storybook/client-logger": "8.0.0-alpha.17",
|
|
68
|
+
"@storybook/core-common": "8.0.0-alpha.17",
|
|
69
|
+
"@storybook/core-events": "8.0.0-alpha.17",
|
|
70
|
+
"@storybook/core-webpack": "8.0.0-alpha.17",
|
|
71
|
+
"@storybook/node-logger": "8.0.0-alpha.17",
|
|
72
|
+
"@storybook/preview": "8.0.0-alpha.17",
|
|
73
|
+
"@storybook/preview-api": "8.0.0-alpha.17",
|
|
74
74
|
"@types/node": "^18.0.0",
|
|
75
75
|
"@types/semver": "^7.3.4",
|
|
76
76
|
"browser-assert": "^1.2.1",
|