@storybook/react-webpack5 0.0.0-pr-25244-sha-bd2cf8e0 → 0.0.0-pr-25303-sha-f3c003d0

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
@@ -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": "0.0.0-pr-25244-sha-bd2cf8e0",
3
+ "version": "0.0.0-pr-25303-sha-f3c003d0",
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": "0.0.0-pr-25244-sha-bd2cf8e0",
51
- "@storybook/preset-react-webpack": "0.0.0-pr-25244-sha-bd2cf8e0",
52
- "@storybook/react": "0.0.0-pr-25244-sha-bd2cf8e0",
50
+ "@storybook/builder-webpack5": "0.0.0-pr-25303-sha-f3c003d0",
51
+ "@storybook/preset-react-webpack": "0.0.0-pr-25303-sha-f3c003d0",
52
+ "@storybook/react": "0.0.0-pr-25303-sha-f3c003d0",
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
- };