@storybook/html-webpack5 8.0.0-alpha.4 → 8.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.
package/dist/preset.d.ts CHANGED
@@ -2810,6 +2810,7 @@ interface LoadOptions {
2810
2810
  packageJson: PackageJson;
2811
2811
  outputDir?: string;
2812
2812
  configDir?: string;
2813
+ cacheKey?: string;
2813
2814
  ignorePreview?: boolean;
2814
2815
  extendServer?: (server: Server) => void;
2815
2816
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/html-webpack5",
3
- "version": "8.0.0-alpha.4",
3
+ "version": "8.0.0-alpha.5",
4
4
  "description": "Storybook for HTML: View HTML snippets in isolation with Hot Reloading.",
5
5
  "keywords": [
6
6
  "storybook"
@@ -47,11 +47,11 @@
47
47
  "prep": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/bundle.ts"
48
48
  },
49
49
  "dependencies": {
50
- "@storybook/builder-webpack5": "8.0.0-alpha.4",
51
- "@storybook/core-common": "8.0.0-alpha.4",
50
+ "@storybook/builder-webpack5": "8.0.0-alpha.5",
51
+ "@storybook/core-common": "8.0.0-alpha.5",
52
52
  "@storybook/global": "^5.0.0",
53
- "@storybook/html": "8.0.0-alpha.4",
54
- "@storybook/preset-html-webpack": "8.0.0-alpha.4",
53
+ "@storybook/html": "8.0.0-alpha.5",
54
+ "@storybook/preset-html-webpack": "8.0.0-alpha.5",
55
55
  "@types/node": "^18.0.0"
56
56
  },
57
57
  "devDependencies": {
package/jest.config.js DELETED
@@ -1,7 +0,0 @@
1
- const path = require('path');
2
- const baseConfig = require('../../jest.config.node');
3
-
4
- module.exports = {
5
- ...baseConfig,
6
- displayName: __dirname.split(path.sep).slice(-2).join(path.posix.sep),
7
- };