Skip to content

Commit

Permalink
docs: Update dependencies in examples (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
taion committed Mar 22, 2019
1 parent 8b532bd commit 8161f02
Show file tree
Hide file tree
Showing 34 changed files with 64,450 additions and 93,388 deletions.
15,086 changes: 0 additions & 15,086 deletions examples/basic-jsx/package-lock.json

This file was deleted.

2 changes: 1 addition & 1 deletion examples/basic-jsx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"found": "^0.3.14",
"found": "^0.4.0-alpha.10",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
Expand Down
10,189 changes: 10,189 additions & 0 deletions examples/basic-jsx/yarn.lock

Large diffs are not rendered by default.

15,086 changes: 0 additions & 15,086 deletions examples/basic/package-lock.json

This file was deleted.

10 changes: 5 additions & 5 deletions examples/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"found": "^0.3.14",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-scripts": "2.1.1"
"found": "^0.4.0-alpha.10",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-scripts": "2.1.8"
},
"scripts": {
"start": "react-scripts start"
Expand Down
10,262 changes: 10,262 additions & 0 deletions examples/basic/yarn.lock

Large diffs are not rendered by default.

15,086 changes: 0 additions & 15,086 deletions examples/global-pending/package-lock.json

This file was deleted.

2 changes: 1 addition & 1 deletion examples/global-pending/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"found": "^0.3.14",
"found": "^0.4.0-alpha.10",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
Expand Down
10,189 changes: 10,189 additions & 0 deletions examples/global-pending/yarn.lock

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions examples/hot-reloading/.babelrc
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{
"presets": [
["env", {
"loose": true
["@babel/env", {
"loose": true,
"useBuiltIns": "usage",
"corejs": 3
}],
"react"
"@babel/react"
],
"plugins": [
"react-hot-loader/babel"
Expand Down
4 changes: 2 additions & 2 deletions examples/hot-reloading/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ This example uses the same route configuration as the [basic JSX example](../bas
## Usage

```
$ npm i
$ npm start
$ yarn
$ yarn start
```

Then open [http://localhost:8080/](http://localhost:8080/) in your browser. Modify [`routeConfig.js`](src/routeConfig.js) to see the hot reloading in action.

0 comments on commit 8161f02

Please sign in to comment.