@storybook/html-webpack5 7.0.0-alpha.2 → 7.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.
@@ -2,10 +2,10 @@ import type { StorybookConfig } from '@storybook/core-common';
2
2
  export declare const addons: StorybookConfig['addons'];
3
3
  export declare const core: (config: StorybookConfig['core']) => Promise<{
4
4
  builder: string;
5
- disableWebpackDefaults?: boolean;
6
- channelOptions?: Partial<import("telejson").Options>;
7
- disableProjectJson?: boolean;
8
- disableTelemetry?: boolean;
9
- enableCrashReports?: boolean;
10
- crossOriginIsolated?: boolean;
5
+ disableWebpackDefaults?: boolean | undefined;
6
+ channelOptions?: Partial<import("telejson").Options> | undefined;
7
+ disableProjectJson?: boolean | undefined;
8
+ disableTelemetry?: boolean | undefined;
9
+ enableCrashReports?: boolean | undefined;
10
+ crossOriginIsolated?: boolean | undefined;
11
11
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/html-webpack5",
3
- "version": "7.0.0-alpha.2",
3
+ "version": "7.0.0-alpha.5",
4
4
  "description": "Storybook for HTML: View HTML snippets in isolation with Hot Reloading.",
5
5
  "keywords": [
6
6
  "storybook"
@@ -32,17 +32,15 @@
32
32
  "prepare": "node ../../scripts/prepare.js"
33
33
  },
34
34
  "dependencies": {
35
- "@storybook/builder-webpack5": "7.0.0-alpha.2",
36
- "@storybook/core-common": "7.0.0-alpha.2",
37
- "@storybook/core-server": "7.0.0-alpha.2",
38
- "@storybook/html": "7.0.0-alpha.2",
39
- "@storybook/preset-html-webpack": "7.0.0-alpha.2",
35
+ "@storybook/builder-webpack5": "7.0.0-alpha.5",
36
+ "@storybook/core-common": "7.0.0-alpha.5",
37
+ "@storybook/html": "7.0.0-alpha.5",
38
+ "@storybook/preset-html-webpack": "7.0.0-alpha.5",
40
39
  "@types/node": "^14.14.20 || ^16.0.0",
41
40
  "core-js": "^3.8.2",
42
41
  "global": "^4.4.0",
43
42
  "react": "16.14.0",
44
- "react-dom": "16.14.0",
45
- "regenerator-runtime": "^0.13.7"
43
+ "react-dom": "16.14.0"
46
44
  },
47
45
  "peerDependencies": {
48
46
  "@babel/core": "*"
@@ -53,5 +51,5 @@
53
51
  "publishConfig": {
54
52
  "access": "public"
55
53
  },
56
- "gitHead": "44920e2b6bd51981bac5124743c29fb9f5517e44"
54
+ "gitHead": "3dd46982823b34d9f37be917b6247631081feff7"
57
55
  }
package/standalone.js DELETED
@@ -1,7 +0,0 @@
1
- const build = require('@storybook/core-server/standalone');
2
-
3
- async function buildStandalone(options) {
4
- return build(options);
5
- }
6
-
7
- module.exports = buildStandalone;