@bbearai/react-native 0.1.0 → 0.1.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.
- package/README.md +4 -4
- package/package.json +8 -2
package/README.md
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
# @
|
|
1
|
+
# @bbearai/react-native
|
|
2
2
|
|
|
3
3
|
BugBear QA widget for React Native mobile apps.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install @
|
|
8
|
+
npm install @bbearai/react-native @bbearai/core
|
|
9
9
|
# or
|
|
10
|
-
yarn add @
|
|
10
|
+
yarn add @bbearai/react-native @bbearai/core
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
## Quick Start
|
|
14
14
|
|
|
15
15
|
```tsx
|
|
16
|
-
import { BugBearProvider, BugBearWidget } from '@
|
|
16
|
+
import { BugBearProvider, BugBearWidget } from '@bbearai/react-native';
|
|
17
17
|
|
|
18
18
|
function App() {
|
|
19
19
|
return (
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bbearai/react-native",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "BugBear React Native components for mobile apps",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -25,7 +25,13 @@
|
|
|
25
25
|
"directory": "packages/react-native"
|
|
26
26
|
},
|
|
27
27
|
"license": "MIT",
|
|
28
|
-
"keywords": [
|
|
28
|
+
"keywords": [
|
|
29
|
+
"bugbear",
|
|
30
|
+
"qa",
|
|
31
|
+
"testing",
|
|
32
|
+
"react-native",
|
|
33
|
+
"mobile"
|
|
34
|
+
],
|
|
29
35
|
"scripts": {
|
|
30
36
|
"build": "tsup src/index.tsx --format cjs,esm --dts --external react --external react-native",
|
|
31
37
|
"dev": "tsup src/index.tsx --format cjs,esm --dts --external react --external react-native --watch",
|