@storybook/react-native 7.6.10-rc.0 → 7.6.11

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/readme.md +4 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/react-native",
3
- "version": "7.6.10-rc.0",
3
+ "version": "7.6.11",
4
4
  "description": "A better way to develop React Native Components for your app",
5
5
  "keywords": [
6
6
  "react",
@@ -63,7 +63,7 @@
63
63
  "@storybook/preview-api": "^7.6.10",
64
64
  "@storybook/preview-web": "^7.6.10",
65
65
  "@storybook/react": "^7.6.10",
66
- "@storybook/react-native-theming": "^7.6.10-rc.0",
66
+ "@storybook/react-native-theming": "^7.6.11",
67
67
  "chokidar": "^3.5.1",
68
68
  "commander": "^8.2.0",
69
69
  "dedent": "^1.5.1",
@@ -97,5 +97,5 @@
97
97
  "publishConfig": {
98
98
  "access": "public"
99
99
  },
100
- "gitHead": "405a69ec5ee81752f7f923b6f2521ed1577001b5"
100
+ "gitHead": "5aed8e2d2ddc4fe76dd5f883aeb35e3fb48cae87"
101
101
  }
package/readme.md CHANGED
@@ -2,7 +2,9 @@
2
2
 
3
3
  With Storybook for React Native you can design and develop individual React Native components without running your app.
4
4
 
5
- This readme is for the 7.6 version, you can find older versions by browsing the different version tags.
5
+ This readme is for the 7.6.10 version, you can find the 6.5 docs [here](https://github.com/storybookjs/react-native/tree/v6.5-stable).
6
+
7
+ If you are migrating from 6.5 to 7.6 you can find the migration guide [here](https://github.com/storybookjs/react-native/blob/next/MIGRATION.md#from-version-65x-to-76x)
6
8
 
7
9
  For more information about storybook visit: [storybook.js.org](https://storybook.js.org)
8
10
 
@@ -35,12 +37,6 @@ For expo you can use this [template](https://github.com/dannyhw/expo-template-st
35
37
  ```sh
36
38
  # With NPM
37
39
  npx create-expo-app --template expo-template-storybook AwesomeStorybook
38
-
39
- # With Yarn
40
- yarn create expo-app --template expo-template-storybook AwesomeStorybook
41
-
42
- # With pnpm
43
- pnpm create expo-app --template expo-template-storybook AwesomeStorybook
44
40
  ```
45
41
 
46
42
  For react native cli you can use this [template](https://github.com/dannyhw/react-native-template-storybook)
@@ -54,7 +50,7 @@ npx react-native init MyApp --template react-native-template-storybook
54
50
  Run init to setup your project with all the dependencies and configuration files:
55
51
 
56
52
  ```sh
57
- npx sb@latest init --type react_native
53
+ npx storybook@latest init
58
54
  ```
59
55
 
60
56
  The only thing left to do is return Storybook's UI in your app entry point (such as `App.tsx`) like this: