Skip to content
This repository was archived by the owner on Apr 11, 2019. It is now read-only.

Commit 2ae3413

Browse files
committed
Merge branch 'master' of https://github.com/RyanCCollins/scalable-react-boilerplate into feat_rc_server_rendering
2 parents a50589a + 25a4443 commit 2ae3413

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.eslintrc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@
88
},
99
"rules": {
1010
"func-names": 0,
11-
"eol-last": 0
11+
"eol-last": 0,
12+
"react/jsx-no-bind": [ 2, {
13+
"ignoreRefs": false,
14+
"allowArrowFunctions": true,
15+
"allowBind": true
16+
}]
1217
},
1318
"plugins": [
1419
"react",

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ Below are a few example apps that have been built with this project
2727
- [See the Code](https://github.com/RyanCCollins/restaurant-reviewer)
2828
- [See the Working App](http://restaurant-reviewer-client.herokuapp.com/)
2929

30+
## Experimental Features
31+
### Server Rendering
32+
Need an extra performance boost with React Server Rendering, code chunking and lazy loading? Take a look at [this branch](https://github.com/RyanCCollins/scalable-react-boilerplate/tree/feat_rc_server_rendering) for an example.
33+
3034
### Docker Support
3135
Coming soon the app will support Docker, which will contain a configured web server to make deployment of this boilerplate simple! You can take a look at [this branch](https://github.com/RyanCCollins/scalable-react-boilerplate/tree/feat_rc_docker_config) for more details.
3236

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
"babel-core": "^6.3.15",
8484
"babel-loader": "^6.2.0",
8585
"babel-polyfill": "latest",
86-
"babel-preset-es2015": "^6.3.13",
86+
"babel-preset-es2015": "^6.9.0",
8787
"babel-preset-react": "^6.3.13",
8888
"babel-preset-stage-0": "^6.3.13",
8989
"components": "^0.1.0",
@@ -128,7 +128,6 @@
128128
"babel-eslint": "^5.0.0-beta4",
129129
"babel-jest": "^15.0.0",
130130
"babel-plugin-webpack-loaders": "^0.7.1",
131-
"babel-preset-es2015": "^6.9.0",
132131
"cross-env": "^2.0.0",
133132
"enzyme": "^2.4.1",
134133
"enzyme-to-json": "^1.0.3",

0 commit comments

Comments
 (0)