@storybook/react-native 8.2.0-alpha.0 → 8.2.0-alpha.1

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.
@@ -23,7 +23,9 @@ module.exports = (config, { configPath, enabled }) => {
23
23
  ...config.resolver,
24
24
  unstable_enablePackageExports: true,
25
25
  resolveRequest: (context, moduleName, platform) => {
26
- const defaultResolveResult = context.resolveRequest(context, moduleName, platform);
26
+ const defaultResolveResult = config?.resolver?.resolveRequest
27
+ ? config?.resolver?.resolveRequest?.(context, moduleName, platform)
28
+ : context.resolveRequest(context, moduleName, platform);
27
29
 
28
30
  // workaround for template files with invalid imports
29
31
  if (defaultResolveResult?.filePath?.includes?.('@storybook/react/template/cli')) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/react-native",
3
- "version": "8.2.0-alpha.0",
3
+ "version": "8.2.0-alpha.1",
4
4
  "description": "A better way to develop React Native Components for your app",
5
5
  "keywords": [
6
6
  "react",
@@ -39,12 +39,12 @@
39
39
  "test:ci": "jest"
40
40
  },
41
41
  "dependencies": {
42
- "@storybook/core": "8.2.0-beta.0",
42
+ "@storybook/core": "^8.2.2",
43
43
  "@storybook/csf": "^0.1.1",
44
44
  "@storybook/global": "^5.0.0",
45
- "@storybook/react": "8.2.0-beta.0",
46
- "@storybook/react-native-theming": "^8.2.0-alpha.0",
47
- "@storybook/react-native-ui": "^8.2.0-alpha.0",
45
+ "@storybook/react": "^8.2.2",
46
+ "@storybook/react-native-theming": "^8.2.0-alpha.1",
47
+ "@storybook/react-native-ui": "^8.2.0-alpha.1",
48
48
  "chokidar": "^3.5.1",
49
49
  "commander": "^8.2.0",
50
50
  "dedent": "^1.5.1",
@@ -78,5 +78,5 @@
78
78
  "publishConfig": {
79
79
  "access": "public"
80
80
  },
81
- "gitHead": "56cad3ccee28ceae70cc7e2fc9b63ec28384eecf"
81
+ "gitHead": "361474c61185642c3e041d6a1d35b935a8725b7b"
82
82
  }