Skip to content

Commit 7e12997

Browse files
juanbzztimneutkens
authored andcommitted
Test updater script on examples folder (vercel#5993)
I wrote a [script](https://github.com/j0lv3r4/dependency-version-updater) to update dependencies recursively in `package.json` files, e.g.: ``` $ node index.js --path="./examples" --dependencies="react=^16.7.0,react-dom=^16.7.0" ``` This PR contains the result against the examples folder.
1 parent 89a4cab commit 7e12997

File tree

146 files changed

+334
-335
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+334
-335
lines changed

examples/active-class-name/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"author": "Remy Sharp <remy@leftlogic.com>",
1010
"dependencies": {
1111
"next": "latest",
12-
"react": "^16.0.0",
13-
"react-dom": "^16.0.0"
12+
"react": "^16.7.0",
13+
"react-dom": "^16.7.0"
1414
},
1515
"license": "ISC"
1616
}

examples/analyze-bundles/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"@zeit/next-bundle-analyzer": "^0.1.2",
1414
"faker": "^4.1.0",
1515
"next": "latest",
16-
"react": "^16.0.0",
17-
"react-dom": "^16.0.0"
16+
"react": "^16.7.0",
17+
"react-dom": "^16.7.0"
1818
},
1919
"license": "ISC"
2020
}

examples/basic-css/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
},
99
"dependencies": {
1010
"next": "latest",
11-
"react": "^16.0.0",
12-
"react-dom": "^16.0.0"
11+
"react": "^16.7.0",
12+
"react-dom": "^16.7.0"
1313
},
1414
"license": "ISC"
1515
}

examples/basic-export/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
},
1010
"dependencies": {
1111
"next": "latest",
12-
"react": "^16.0.0",
13-
"react-dom": "^16.0.0"
12+
"react": "^16.7.0",
13+
"react-dom": "^16.7.0"
1414
},
1515
"license": "ISC"
1616
}

examples/custom-charset/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"dependencies": {
1010
"next": "latest",
11-
"react": "^16.0.0",
12-
"react-dom": "^16.0.0"
11+
"react": "^16.7.0",
12+
"react-dom": "^16.7.0"
1313
}
1414
}

examples/custom-server-actionhero/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
"ioredis": "^3.2.2",
88
"isomorphic-fetch": "^2.2.1",
99
"next": "^5.0.1-canary.9",
10-
"react": "^16.1.1",
11-
"react-dom": "^16.1.1",
10+
"react": "^16.7.0",
11+
"react-dom": "^16.7.0",
1212
"ws": "^4.1.0"
1313
},
1414
"scripts": {

examples/custom-server-express/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"dependencies": {
1010
"express": "^4.14.0",
1111
"next": "latest",
12-
"react": "^16.0.0",
13-
"react-dom": "^16.0.0"
12+
"react": "^16.7.0",
13+
"react-dom": "^16.7.0"
1414
}
1515
}

examples/custom-server-fastify/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"dependencies": {
1010
"fastify": "1.8.0",
1111
"next": "latest",
12-
"react": "^16.0.0",
13-
"react-dom": "^16.0.0"
12+
"react": "^16.7.0",
13+
"react-dom": "^16.7.0"
1414
}
1515
}

examples/custom-server-hapi/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"dependencies": {
1010
"hapi": "^17.1.1",
1111
"next": "latest",
12-
"react": "^16.0.0",
13-
"react-dom": "^16.0.0"
12+
"react": "^16.7.0",
13+
"react-dom": "^16.7.0"
1414
}
1515
}

examples/custom-server-koa/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"koa": "^2.0.1",
1111
"koa-router": "^7.1.0",
1212
"next": "latest",
13-
"react": "^16.0.0",
14-
"react-dom": "^16.0.0"
13+
"react": "^16.7.0",
14+
"react-dom": "^16.7.0"
1515
}
1616
}

0 commit comments

Comments
 (0)