From 7a747477377a95c5695c7a9ec1c42e4dd716649d Mon Sep 17 00:00:00 2001 From: Dimitri De Franciscis Date: Mon, 7 Mar 2016 11:27:40 +0100 Subject: [PATCH 1/4] Filter out IntelliJ IDEA project files in .gitignore --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 329996c..43324af 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ /node_modules bundle.js npm-debug.log + +# IntelliJ +*.iml +/.idea \ No newline at end of file From 94692d540efc7223c80a826cbc20b842eea0cd9e Mon Sep 17 00:00:00 2001 From: Dorian Karter Date: Fri, 11 Mar 2016 14:52:34 -0600 Subject: [PATCH 2/4] Use destructuring to import Component You use destructuring in your course so it makes sense to have the redux simple starter boilerplate use the same syntax --- src/components/app.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/app.js b/src/components/app.js index 27ca5cc..58614b0 100644 --- a/src/components/app.js +++ b/src/components/app.js @@ -1,5 +1,4 @@ -import React from 'react'; -import { Component } from 'react'; +import React, { Component } from 'react'; export default class App extends Component { render() { From d976e01015aea0860393e6da1b1e7c09c2c59952 Mon Sep 17 00:00:00 2001 From: tomoaki Date: Thu, 21 Apr 2016 16:31:25 +0900 Subject: [PATCH 3/4] Add global navigator setting to modify the error, 'navigator is not defined', in testing with react-router link --- test/test_helper.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_helper.js b/test/test_helper.js index 7e727fe..e4d00a0 100644 --- a/test/test_helper.js +++ b/test/test_helper.js @@ -11,6 +11,7 @@ import reducers from '../src/reducers'; global.document = jsdom.jsdom(''); global.window = global.document.defaultView; +global.navigator = global.window.navigator; const $ = _$(window); chaiJquery(chai, chai.util, $); From 6246c472e3975c7f6ac3dca01a330caf0da171c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Lity=C5=84ski?= Date: Sat, 7 May 2016 04:01:17 +0200 Subject: [PATCH 4/4] fix typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7074f71..63be420 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Interested in learning [Redux](https://www.udemy.com/react-redux/)? There are two methods for getting started with this repo. ####Familiar with Git?##### -Checkout this repo, install depdencies, then start the gulp process with the following: +Checkout this repo, install dependencies, then start the gulp process with the following: ``` > git clone git@github.com:StephenGrider/ReduxSimpleStarter.git