@storybook/web-components-webpack5 7.0.0-alpha.2 → 7.0.0-alpha.3

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.
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
@@ -0,0 +1 @@
1
+ export {};
@@ -1,4 +1,4 @@
1
- import type { StorybookConfig } from '@storybook/core-common';
1
+ import type { StorybookConfig } from './types';
2
2
  export declare const addons: StorybookConfig['addons'];
3
3
  export declare const core: (config: StorybookConfig['core']) => Promise<{
4
4
  builder: string;
@@ -0,0 +1,7 @@
1
+ import type { Configuration } from 'webpack';
2
+ import type { StorybookConfig as BaseStorybookConfig } from '@storybook/preset-web-components-webpack';
3
+ export type { BuilderResult } from '@storybook/preset-web-components-webpack';
4
+ /**
5
+ * The interface for Storybook configuration in `main.ts` files.
6
+ */
7
+ export declare type StorybookConfig = BaseStorybookConfig<Configuration>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/web-components-webpack5",
3
- "version": "7.0.0-alpha.2",
3
+ "version": "7.0.0-alpha.3",
4
4
  "description": "Storybook for web-components: View web components snippets in isolation with Hot Reloading.",
5
5
  "keywords": [
6
6
  "lit-html",
@@ -35,11 +35,11 @@
35
35
  },
36
36
  "dependencies": {
37
37
  "@babel/preset-env": "^7.12.11",
38
- "@storybook/builder-webpack5": "7.0.0-alpha.2",
39
- "@storybook/core-common": "7.0.0-alpha.2",
40
- "@storybook/core-server": "7.0.0-alpha.2",
41
- "@storybook/preset-web-components-webpack": "7.0.0-alpha.2",
42
- "@storybook/web-components": "7.0.0-alpha.2",
38
+ "@storybook/builder-webpack5": "7.0.0-alpha.3",
39
+ "@storybook/core-common": "7.0.0-alpha.3",
40
+ "@storybook/core-server": "7.0.0-alpha.3",
41
+ "@storybook/preset-web-components-webpack": "7.0.0-alpha.3",
42
+ "@storybook/web-components": "7.0.0-alpha.3",
43
43
  "@types/node": "^14.14.20 || ^16.0.0",
44
44
  "core-js": "^3.8.2",
45
45
  "react": "16.14.0",
@@ -58,5 +58,5 @@
58
58
  "publishConfig": {
59
59
  "access": "public"
60
60
  },
61
- "gitHead": "44920e2b6bd51981bac5124743c29fb9f5517e44"
61
+ "gitHead": "629b056190993bcee6445471b8cb27208eb401a9"
62
62
  }