@storybook/core-webpack 7.0.0-alpha.50 → 7.0.0-alpha.51

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 +4 -4
  2. package/package.json +7 -7
package/dist/index.d.ts CHANGED
@@ -1,11 +1,11 @@
1
1
  import { StorybookConfig as StorybookConfig$1, Options, CoreCommon_NormalizedStoriesSpecifier } from '@storybook/types';
2
2
  export { BuilderResult, Options, Preset, TypescriptOptions } from '@storybook/types';
3
3
 
4
- declare type RulesConfig = any;
5
- declare type ModuleConfig = {
4
+ type RulesConfig = any;
5
+ type ModuleConfig = {
6
6
  rules?: RulesConfig[];
7
7
  };
8
- declare type ResolveConfig = {
8
+ type ResolveConfig = {
9
9
  extensions?: string[];
10
10
  mainFields?: (string | string[])[] | undefined;
11
11
  alias?: any;
@@ -17,7 +17,7 @@ interface WebpackConfiguration {
17
17
  optimization?: any;
18
18
  devtool?: false | string;
19
19
  }
20
- declare type StorybookConfig<TWebpackConfiguration = WebpackConfiguration> = StorybookConfig$1 & {
20
+ type StorybookConfig<TWebpackConfiguration = WebpackConfiguration> = StorybookConfig$1 & {
21
21
  /**
22
22
  * Modify or return a custom Webpack config after the Storybook's default configuration
23
23
  * has run (mostly used by addons).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/core-webpack",
3
- "version": "7.0.0-alpha.50",
3
+ "version": "7.0.0-alpha.51",
4
4
  "description": "Storybook framework-agnostic API",
5
5
  "keywords": [
6
6
  "storybook"
@@ -42,14 +42,14 @@
42
42
  "prep": "../../../scripts/prepare/bundle.ts"
43
43
  },
44
44
  "dependencies": {
45
- "@storybook/core-common": "7.0.0-alpha.50",
46
- "@storybook/node-logger": "7.0.0-alpha.50",
47
- "@storybook/types": "7.0.0-alpha.50",
48
- "@types/node": "^16.0.0",
45
+ "@storybook/core-common": "7.0.0-alpha.51",
46
+ "@storybook/node-logger": "7.0.0-alpha.51",
47
+ "@storybook/types": "7.0.0-alpha.51",
48
+ "@types/node": "^16.0.0 || ^18.0.0",
49
49
  "ts-dedent": "^2.0.0"
50
50
  },
51
51
  "devDependencies": {
52
- "typescript": "~4.6.3",
52
+ "typescript": "^4.9.3",
53
53
  "webpack": "5"
54
54
  },
55
55
  "publishConfig": {
@@ -61,5 +61,5 @@
61
61
  ],
62
62
  "platform": "node"
63
63
  },
64
- "gitHead": "77184d039091f4782dc4540df6d271a24fb3e242"
64
+ "gitHead": "4fec76c3f5135854d9834ebc1cf2f1f325696ded"
65
65
  }