Fix/react versions (#17236)

<!-- freeCodeCamp Pull Request Template -->

<!-- IMPORTANT Please review https://github.com/freeCodeCamp/freeCodeCamp/blob/staging/CONTRIBUTING.md for detailed contributing guidelines -->
<!-- Help with PRs can be found at https://gitter.im/FreeCodeCamp/Contributors -->
<!-- Make sure that your PR is not a duplicate -->

#### Pre-Submission Checklist
<!-- Go over all points below, and after creating the PR, tick all the checkboxes that apply. -->
<!-- All points should be verified, otherwise, read the CONTRIBUTING guidelines from above-->
<!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
- [x] Your pull request targets the `staging` branch of freeCodeCamp.
- [x] Branch starts with either `fix/`, `feature/`, or `translate/` (e.g. `fix/signin-issue`)
- [ ] You have only one commit (if not, [squash](http://forum.freecodecamp.org/t/how-to-squash-multiple-commits-into-one-with-git/13231) them into one commit).
- [x] All new and existing tests pass the command `npm test`. Use `git commit --amend` to amend any fixes.

#### Type of Change
<!-- What type of change does your code introduce? After creating the PR, tick the checkboxes that apply. -->
- [x] Small bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds new functionality)
- [ ] Breaking change (fix or feature that would change existing functionality)
- [ ] Add new translation (feature adding new translations)

#### Checklist:
<!-- Go over all points below, and after creating the PR, tick the checkboxes that apply. -->
<!-- If you're unsure about any of these, don't hesitate to ask in the Contributors room linked above. We're here to help! -->
- [x] Tested changes locally.
- [x] Addressed currently open issue (replace XXXXX with an issue no in next line)

Closes #17215

#### Description
<!-- Describe your changes in detail -->
pull/18182/head
Stuart Taylor 2018-05-25 12:57:15 +01:00 committed by mrugesh mohapatra
parent 15a92597ed
commit 7c694c2666
4 changed files with 11 additions and 11 deletions

View File

@ -5,19 +5,19 @@
"helpRoom": "Help",
"required": [
{
"src": "https://cdnjs.cloudflare.com/ajax/libs/react/16.1.1/umd/react.development.js"
"src":"https://unpkg.com/react@16.4.0/umd/react.production.min.js"
},
{
"src": "https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.1.1/umd/react-dom.development.js"
"src":"https://unpkg.com/react-dom@16.4.0/umd/react-dom.production.min.js"
},
{
"src": "https://cdnjs.cloudflare.com/ajax/libs/redux/3.7.2/redux.js"
"src": "https://cdnjs.cloudflare.com/ajax/libs/redux/3.7.2/redux.min.js"
},
{
"src": "https://cdnjs.cloudflare.com/ajax/libs/react-redux/5.0.6/react-redux.js"
"src": "https://cdnjs.cloudflare.com/ajax/libs/react-redux/5.0.7/react-redux.min.js"
}
],
"template": "<body><div id='root'></div>${ source }</body>",
"template": "<body><div id='root'></div>${ source || '' }</body>",
"challenges": [
{
"id": "5a24c314108439a4d4036141",

View File

@ -5,13 +5,13 @@
"helpRoom": "Help",
"required": [
{
"src": "https://cdnjs.cloudflare.com/ajax/libs/react/15.4.1/react.js"
"src":"https://unpkg.com/react@16.4.0/umd/react.production.min.js"
},
{
"src": "https://cdnjs.cloudflare.com/ajax/libs/react/15.4.1/react-dom.js"
"src":"https://unpkg.com/react-dom@16.4.0/umd/react-dom.production.min.js"
}
],
"template": "<body><div id='root'></div><div id='challenge-node'></div>${ source }</body>",
"template": "<body><div id='root'></div><div id='challenge-node'></div>${ source || '' }</body>",
"challenges": [
{
"id": "587d7dbc367417b2b2512bb1",

View File

@ -5,10 +5,10 @@
"helpRoom": "Help",
"required": [
{
"src": "https://cdnjs.cloudflare.com/ajax/libs/redux/3.7.2/redux.js"
"src": "https://cdnjs.cloudflare.com/ajax/libs/redux/3.7.2/redux.min.js"
},
{
"src": "https://cdnjs.cloudflare.com/ajax/libs/redux-thunk/2.2.0/redux-thunk.js"
"src": "https://cdnjs.cloudflare.com/ajax/libs/redux-thunk/2.2.0/redux-thunk.min.js"
}
],
"challenges": [

View File

@ -1,6 +1,6 @@
{
"name": "@freecodecamp/curriculum",
"version": "1.0.1",
"version": "1.0.2",
"description": "freeCodeCamp's curriculum seed files",
"main": "dist/index.js",
"publishConfig": {