@storybook/react-webpack5 8.0.0-alpha.4 → 8.0.0-alpha.6

Sign up to get free protection for your applications and to get access to all the features.
package/dist/preset.d.ts CHANGED
@@ -2813,6 +2813,7 @@ interface LoadOptions {
2813
2813
  packageJson: PackageJson;
2814
2814
  outputDir?: string;
2815
2815
  configDir?: string;
2816
+ cacheKey?: string;
2816
2817
  ignorePreview?: boolean;
2817
2818
  extendServer?: (server: Server) => void;
2818
2819
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/react-webpack5",
3
- "version": "8.0.0-alpha.4",
3
+ "version": "8.0.0-alpha.6",
4
4
  "description": "Storybook for React: Develop React Component in isolation with Hot Reloading.",
5
5
  "keywords": [
6
6
  "storybook"
@@ -47,14 +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/preset-react-webpack": "8.0.0-alpha.4",
52
- "@storybook/react": "8.0.0-alpha.4",
50
+ "@storybook/builder-webpack5": "8.0.0-alpha.6",
51
+ "@storybook/preset-react-webpack": "8.0.0-alpha.6",
52
+ "@storybook/react": "8.0.0-alpha.6",
53
53
  "@types/node": "^18.0.0"
54
54
  },
55
- "devDependencies": {
56
- "jest-specific-snapshot": "^8.0.0"
57
- },
58
55
  "peerDependencies": {
59
56
  "@babel/core": "^7.22.0",
60
57
  "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
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
- };