@capture.dev/redux 0.0.3 → 0.0.5
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 +3 -3
- package/package.json +3 -4
- package/LICENSE.txt +0 -7
package/README.md
CHANGED
|
@@ -25,15 +25,15 @@ export const store = configureStore({
|
|
|
25
25
|
});
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
Once added, the middleware will automatically start recording actions that are performed on your Redux store.
|
|
29
29
|
|
|
30
30
|
## How It Works
|
|
31
31
|
|
|
32
32
|
The middleware keeps a log of each action and its payload as it is dispatched, along with a snapshot of the state after the action has been performed.
|
|
33
33
|
|
|
34
|
-
When a user submits a bug report, Capture automatically includes these logs, allowing you to recreate the state of your store during
|
|
34
|
+
When a user submits a bug report, Capture automatically includes these logs, allowing you to recreate the state of your store at any point during a session.
|
|
35
35
|
|
|
36
|
-
|
|
36
|
+
All logs are managed locally and no data is sent to Capture.dev unless a bug report is created.
|
|
37
37
|
|
|
38
38
|
## What is Capture.dev?
|
|
39
39
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capture.dev/redux",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -13,8 +13,7 @@
|
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"files": [
|
|
16
|
-
"dist/**"
|
|
17
|
-
"LICENSE.txt"
|
|
16
|
+
"dist/**"
|
|
18
17
|
],
|
|
19
18
|
"keywords": [
|
|
20
19
|
"capture",
|
|
@@ -44,7 +43,7 @@
|
|
|
44
43
|
"extends": "../../package.json"
|
|
45
44
|
},
|
|
46
45
|
"dependencies": {
|
|
47
|
-
"@capture.dev/event-logger": "0.0.
|
|
46
|
+
"@capture.dev/event-logger": "0.0.3"
|
|
48
47
|
},
|
|
49
48
|
"lint-staged": {
|
|
50
49
|
"**/*.{ts,tsx,js}": [
|