Skip to content

Commit 83f609a

Browse files
committed
2 parents 975ea08 + 7bce3c3 commit 83f609a

File tree

4 files changed

+3
-141
lines changed

4 files changed

+3
-141
lines changed

babel.config.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,4 @@ module.exports = {
1010
],
1111
'@babel/preset-react',
1212
],
13-
// plugins: [
14-
// ['@babel/plugin-proposal-decorators', { legacy: true }],
15-
// ],
1613
};

package-lock.json

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

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,8 @@
4343
"jest": "^24.8.0",
4444
"jest-cli": "^24.8.0",
4545
"node-sass": "^4.12.0",
46-
"proxyquire": "^2.1.2",
4746
"sass": "^1.22.9",
4847
"sass-loader": "^7.2.0",
49-
"sinon": "^7.4.1",
5048
"style-loader": "^0.23.1",
5149
"webpack": "^4.39.1",
5250
"webpack-chrome-extension-reloader": "^1.3.0",

readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ Two parts are needed for this tool to function. The chrome extension must be ins
1212
```
1313
npm i react-time-travel
1414
```
15-
3. Call the `linkFiber` method on your root container after rendering your App.
15+
3. Call the library method on your root container after rendering your App.
1616

1717
```
18-
const { linkFiber } = require('react-time-travel');
18+
const reactTimeTravel = require('react-time-travel');
1919
2020
const rootContainer = document.getElementById('root');
2121
ReactDom.render(<App />, rootContainer);
2222
23-
linkFiber(rootContainer);
23+
reactTimeTravel(rootContainer);
2424
```
2525

2626
4. Done! That's all you have to do to link your React project to our library.

0 commit comments

Comments
 (0)