Skip to content

Commit 2c99f0c

Browse files
Nian LiuNian Liu
authored andcommitted
all conflicts resolved
2 parents 5068cb5 + 9609025 commit 2c99f0c

File tree

17 files changed

+119
-95
lines changed

17 files changed

+119
-95
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# React-Lucid
22
A React-GraphQL developer tool.
33

4+
![Alt text](public/assets/logo-text.png?raw=true "Title")
5+
46
React-Lucid is a React / GraphQL DevTool designed for helping developers debug their React applications that depend on GraphQL resources more efficiently. React-Lucid allows you to visualize the component hierarchy of your React application and your GraphQL schema, queries, and mutations side by side, making development a breeze.
57

68
### --Usage--
@@ -26,7 +28,7 @@ React-Lucid is a React / GraphQL DevTool designed for helping developers debug t
2628

2729
2. Build React-Lucid to be used in Chrome Dev Tools:
2830

29-
```npm run build ``` or ```npm run watch```
31+
```npm run build ```
3032

3133
3. In Chrome Browser, open more tools and Extensions tab and click 'Load Unpacked'
3234

build/logo.png

418 KB
Loading

build/webpack-bundle.js

Lines changed: 0 additions & 38 deletions
Large diffs are not rendered by default.

build/webpack-bundle.js.map

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

public/app.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ body{
7272
color: white;
7373
}
7474

75-
7675
/* For window */
7776
#window{
7877
display: flex;

public/assets/logo-card.png

656 KB
Loading

public/assets/logo-text.png

1.44 MB
Loading

public/assets/logo.png

431 KB
Loading

public/stateContainer.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#stateDiff-container {
22
grid-area: diff;
3-
max-height: 450px;
3+
max-height: 500px;
44
overflow-y: scroll;
55
background-color: rgba(214, 214, 214, 0.4);
66
border: 1px solid rgba(0, 0, 0, 0.3);
@@ -25,7 +25,7 @@
2525

2626
.state-span{
2727
margin: 6px;
28-
font-size: 1.1em;
28+
font-size: 1.2em;
2929
font-weight: 500;
3030
letter-spacing: 0.8px;
3131
line-height: 15px;

src/components/GraphQLRequest.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { GraphqlCodeBlock } from 'graphql-syntax-highlighter-react';
33
import ReactJson from 'react-json-view';
44

55
const GraphQLRequest = ({ logs, log } ) => {
6-
console.log(log);
76
let req = log === null ? JSON.parse(logs[logs.length - 1].req.postData.text) : JSON.parse(log.req.postData.text);
87
let query = req.query;
98
let variables = req.variables;

0 commit comments

Comments
 (0)