Skip to content

Commit c3198b2

Browse files
committed
2 parents 5128069 + 6d6791e commit c3198b2

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,13 @@ Calculating and aggregating the results happens inside the app frame and not in
366366
* Particular measures can be inspected in the console with the help of configuration object (not done with the API for it yet)
367367
* This also gives control to the developer on how to manage and inspect the measures apart from using the extension
368368

369+
## Todos / Ideas / Improvements
370+
371+
- [ ] New UI for devtool
372+
- [ ] Make the implementation of measures generator more concrete
373+
- [ ] Add support for older versions of React
374+
- [ ] Make the tool more comprehensible
375+
369376
## Contributing
370377

371378
[Read the contributing guide](./CONTRIBUTING.md)

package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"files": ["src"],
77
"author": "Nitin Tulswani",
88
"license": "MIT",
9-
"dependencies": {
9+
"peerDependencies": {
1010
"react": "^16.2.0",
1111
"react-dom": "^16.2.0"
1212
},
@@ -22,7 +22,9 @@
2222
"prop-types": "^15.6.0",
2323
"react-test-renderer": "^16.2.0",
2424
"uglifyjs-webpack-plugin": "^1.1.2",
25-
"webpack": "^3.10.0"
25+
"webpack": "^3.10.0",
26+
"react": "^16.2.0",
27+
"react-dom": "^16.2.0"
2628
},
2729
"scripts": {
2830
"test": "jest",

0 commit comments

Comments
 (0)