@storybook/preact-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/preact-webpack5",
3
- "version": "7.0.0-alpha.2",
3
+ "version": "7.0.0-alpha.5",
4
4
  "description": "Storybook for Preact: Develop Preact Component in isolation.",
5
5
  "keywords": [
6
6
  "storybook"
@@ -32,16 +32,14 @@
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/preact": "7.0.0-alpha.2",
39
- "@storybook/preset-preact-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/preact": "7.0.0-alpha.5",
38
+ "@storybook/preset-preact-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
  "react": "16.14.0",
43
- "react-dom": "16.14.0",
44
- "regenerator-runtime": "^0.13.7"
42
+ "react-dom": "16.14.0"
45
43
  },
46
44
  "devDependencies": {
47
45
  "preact": "^10.5.13"
@@ -56,5 +54,5 @@
56
54
  "publishConfig": {
57
55
  "access": "public"
58
56
  },
59
- "gitHead": "44920e2b6bd51981bac5124743c29fb9f5517e44"
57
+ "gitHead": "3dd46982823b34d9f37be917b6247631081feff7"
60
58
  }
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;