From 8a3927f5176f502e29af7d723c503f3f4d8280cb Mon Sep 17 00:00:00 2001 From: Ajay Yadav Date: Thu, 29 Dec 2016 11:37:48 +0530 Subject: [PATCH 1/3] updated roadmap --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 18bb95a..55c9bad 100644 --- a/README.md +++ b/README.md @@ -128,6 +128,7 @@ Now that your development server is up and running, you will see that you have y - [ ] Clean up Redux actions, reducers, constants - [ ] Add basic styles and enable webpack compilation of CSS/SASS - [ ] Provide additional documentation and example of pushing to production + - [ ] Dynamic route loading chunks *** From c7848bbd4a87f9501302c4d07ac0b4e6bc5d2bd8 Mon Sep 17 00:00:00 2001 From: Ajay Yadav Date: Tue, 24 Jan 2017 12:23:49 +0530 Subject: [PATCH 2/3] added missing package --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index a92abed..6d88e9c 100644 --- a/package.json +++ b/package.json @@ -50,6 +50,7 @@ "react": "^0.14.3", "react-dom": "^0.14.3", "react-redux": "^4.1.1", + "redux": "^3.6.0", "redux-thunk": "^1.0.3" } } From ee3cb7862597bf26756cc4fbb7dd0eb53e29dcf1 Mon Sep 17 00:00:00 2001 From: EC2 Default User Date: Mon, 14 May 2018 10:37:50 +0000 Subject: [PATCH 3/3] use strict added --- devServer.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/devServer.js b/devServer.js index f40eed6..f6b685f 100644 --- a/devServer.js +++ b/devServer.js @@ -1,3 +1,5 @@ +"use strict"; + const path = require('path'); const express = require('express'); const webpack = require('webpack');