Skip to content

Commit 575999e

Browse files
authored
Merge pull request #44 from oslabs-beta/dev
Dev
2 parents 4600fc6 + 891ac1c commit 575999e

File tree

7 files changed

+19
-12
lines changed

7 files changed

+19
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<a id="readme-top"></a>
22

33
<p align="center">
4-
<img src="./extension/public/icon.png" alt="Logo" width="250"/>
4+
<img src="./assets/icon.png" alt="Logo" width="250"/>
55
</p>
66

77
# Technologies

assets/icon.png

330 KB
Loading

extension/public/manifest.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,8 @@
2222
}
2323
],
2424
"permissions": [
25-
"tabs",
2625
"activeTab",
27-
"storage",
28-
"scripting"
26+
"storage"
2927
],
3028
"host_permissions": ["http://localhost/*"],
3129
"web_accessible_resources": [

package/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ React Query Rewind introduces a powerful DevTool extension designed to work in c
3333

3434
## Installation
3535

36-
1. Download npm package into your application.
36+
1. Download npm package into your application as a dev dependency.
3737

3838
```sh
39-
npm i react-query-rewind
39+
npm i --save-dev react-query-rewind
4040
```
4141

4242
2. Import the ReactQueryRewind component into the root of your applicaiton.

package/examples/example-2/server/models/postsThree.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
{
22
"posts": [
33
{
4-
"text": "First Post – Feed 3",
5-
"liked": false,
4+
"text": "hi",
5+
"liked": true,
66
"comments": [],
77
"createComment": false,
8+
"timestamp": "3:15 PM"
9+
},
10+
{
11+
"text": "First Post – Feed 3",
12+
"liked": true,
13+
"comments": [
14+
"hello"
15+
],
16+
"createComment": true,
817
"timestamp": "3:42 PM"
918
}
1019
]

package/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"type": "git",
1919
"url": "https://github.com/oslabs-beta/react-query-rewind"
2020
},
21-
"version": "1.1.0",
21+
"version": "1.1.1",
2222
"description": "React Query Rewind is a library that helps developers debug applications that use React Query (ie TanStack Query) by letting them time travel through state changes directly in their chrome dev tools",
2323
"keywords": [
2424
"react",

0 commit comments

Comments
 (0)