Skip to content

Commit a090e9d

Browse files
committed
Version v0.1.2
* Redux is now optional * Improved defaults
1 parent a7bd40f commit a090e9d

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

.codeclimate.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
languages:
22
JavaScript: true
3+
34
exclude_paths:
45
- "lib/**"
56
- "test/**"
@@ -13,3 +14,13 @@ exclude_paths:
1314
- "config.json"
1415
- "package.json"
1516
- "generators/**/templates"
17+
18+
engines:
19+
duplication:
20+
enabled: true
21+
exclude_fingerprints:
22+
# Remove code similarity warnings between generators (similar prompt handler)
23+
- 68c273c948b53d6a86b5eefa38483332
24+
- e24148612c25eb0528c05d3f03fb51f7
25+
- 2f8bfbf9830dc0e0f7128e337a9eb6d3
26+
- 702835e30de2f6c7f01ee88413ff9ed2

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,16 +187,15 @@ export default class Cars extends Component {
187187

188188
Complete example of generator out available in [Examples](https://github.com/prescottprue/generator-react-firebase/tree/master/example)
189189

190-
### Server-side Rendering
190+
## Server-side Rendering
191191

192192
You have the option to enable Server-side Rendering through React and NodeJS. Server-side rendering allows pre-population of data into your application, which can improve SEO (Google is improving static crawling).
193193

194194
In order to enable server-side rendering with React, you must host a NodeJS server. This server is included and can be run using `npm run production` (runs if deployed to Heroku).
195195

196196

197197
## In the future
198-
* Option to not include redux
199-
* Prompt about props/state vars in Container (which Firebase location to bind to props)
198+
* Container Generator - Prompt for props/state vars (which Firebase location to bind to props)
200199
* Non-decorators implementation for props binding (pure redux and firebase implementations)
201200
* Open to ideas
202201

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "generator-react-firebase",
3-
"version": "0.1.1",
4-
"description": "Starter that uses React and Firebase (with Redux)",
3+
"version": "0.1.2",
4+
"description": "Starter that uses React and Firebase (with option for Redux)",
55
"homepage": "github.com/prescottprue/generator-react-firebase",
66
"author": {
77
"name": "Scott Prue",

0 commit comments

Comments
 (0)