@koderlabs/tasks-sdk-rn 0.1.1 → 0.1.2

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/README.md +11 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -15,11 +15,19 @@ React Native client for InstantTasks. Wraps the core SDK (`@koderlabs/tasks-sdk`
15
15
  ## Install
16
16
 
17
17
  ```bash
18
- pnpm add @koderlabs/tasks-sdk @koderlabs/tasks-sdk-rn
18
+ npm install @koderlabs/tasks-sdk @koderlabs/tasks-sdk-rn
19
19
  # optional native-crash capture:
20
- pnpm add @koderlabs/tasks-sdk-rn-native
20
+ npm install @koderlabs/tasks-sdk-rn-native
21
21
  # optional Expo file system (for crash recovery):
22
- pnpm add expo-file-system
22
+ npm install expo-file-system
23
+ ```
24
+
25
+ Using pnpm or yarn:
26
+
27
+ ```bash
28
+ pnpm add @koderlabs/tasks-sdk @koderlabs/tasks-sdk-rn
29
+ # or
30
+ yarn add @koderlabs/tasks-sdk @koderlabs/tasks-sdk-rn
23
31
  ```
24
32
 
25
33
  Peer: `react-native`. The Expo config plugin lives at `@koderlabs/tasks-sdk-rn-native` — register it in `app.json#plugins` for native crash capture.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koderlabs/tasks-sdk-rn",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "React Native adapter for the InstantTasks SDK — errors + network + breadcrumbs + navigation + native crash recovery.",
5
5
  "keywords": [
6
6
  "instanttasks",
@@ -45,8 +45,8 @@
45
45
  ],
46
46
  "sideEffects": false,
47
47
  "dependencies": {
48
- "@koderlabs/tasks-sdk": "0.1.1",
49
- "@koderlabs/tasks-sdk-types": "0.1.1"
48
+ "@koderlabs/tasks-sdk": "0.1.2",
49
+ "@koderlabs/tasks-sdk-types": "0.1.2"
50
50
  },
51
51
  "peerDependencies": {
52
52
  "react-native": ">=0.72.0",