Universal React Redux Versions Save

🧐 A sensible universal starter kit for React + Redux

4.1.0

6 years ago

This is a maintenance release.

Improvements

  • Simplify and remove unused css resources in common/css, and add the existing files to sass-resources-loader. See webpack/constants.js.
  • Only use dotenv-safe in development environment. In production, it is assumed that environment variables will actually be set in the OS, as opposed to using a .env file.
  • Properly support redux-devtools-extension.

New Features

  • Use react-helmet to manage document titles.
  • Add redux-thunk middleware to for asynchronous actions, and add an example showing how to use it to fetch todo items.
  • Add a server-side API (dummy response data) to fetch todos, using async/await.
  • Update server-side code to support the fetchData() method in a given component tree, so that we can render components server-side that require fetched data.

4.0.0

6 years ago
  • Upgrade to webpack 3
  • Remove redux-devtools (please install the Chrome Extension instead)
  • Fix vendor chunking and split vendor/app js and css bundles
  • Add semantic-ui-react styles and components.

3.0.0

7 years ago
  • Switch to react-router v4 (breaking changes -- refactors routing)
  • Remove Example container and replace with a quick & simple Todo app.
  • Switch to react-hot-loader v3 (currently in beta)
  • Switch to react-router-redux v5-alpha.
  • Fixed production build script
  • General housecleaning

2.3.0

7 years ago
  • Adds better-npm-run
  • Switch to webpack's node API for building rather than the CLI to enable cross-platform support (Windows)
  • Update to webpack-2.1.0-beta.28 (will update to 2.2 soon)

2.2.0

7 years ago

Changes:

  • Remove redux-localstorage due to it being out of the scope of being a barebones package (Thanks @kartiklad) #23
  • Added support for Webpack 2 (beta.27) #24
  • Update package dependencies

2.1.2

7 years ago
  • Updated package dependencies, including react-router to 3.0.0.
  • Updated .nvmrc to point at Node LTS version (6.9.1)

2.1.1

7 years ago
  • Updated package.json scripts to use yarn run and yarn bin.
  • Added an .eslintignore file.
  • Updated README.md

2.1.0

7 years ago
  • Add yarn.lock for support with yarn.
  • Update package dependencies.
  • Remove deprecated .development() method in webpack-isomorphic-tools.

2.0.0

7 years ago

Changes:

  • Adds support for css-modules (Universal)
  • Re-organize folder structure
  • Remove bootstrap dependency - we'll leave this up to the user to implement
  • Update .nvmrc to use Node 6.4.0.
  • Remove Cordova support (again). See the feature/cordova branch for support.
  • Chunk vendor files into its vendor.js and application files into app.js.
  • Universally resolve module requires into common/ directory, removes need to require modules relatively, e.g. require('../../../Component')

1.0.1

7 years ago
  • Force NODE_ENV to be set on npm run scripts.
  • Update README.