This repository has been archived by the owner on Sep 11, 2018. It is now read-only.
Releases: dvdzkwsk/react-redux-starter-kit
Releases · dvdzkwsk/react-redux-starter-kit
v2.0.0-alpha.0
Features
- Integrated with redux-cli
- Added support for Flowtype
- Added
npm run flow:check
script - Added chai-enzyme
- Added
babel-plugin-transform-react-constant-elements
in production - Added
babel-plugin-transform-react-remove-prop-types
in production - Added
eslint-plugin-flowvars
- Added
better-npm-run
- Added loader for
.otf
files - Added
nodemon
for local server development - Added placeholder favicon,
humans.txt
, androbots.txt
- Replaced
express
withkoa@^2.0.0-alpha
- Added
koa-proxy
with config support - Added
koa-conntect-history-api-fallback
- Upgraded
eslint
to^2.0.0
- Upgraded
babel-eslint
to^5.0.0
- Upgraded
eslint-plugin-react
to^4.0.0
- Upgraded
yargs
to^4.0.0
- Upgraded
html-webpack-plugin
from^1.6.1
to^2.7.1
- Upgraded
react-router
to^2.0.0
- Replaced
redux-simple-router
withreact-router-redux
- Replaced
phantomjs
withphantomjs-prebuilt
- Replaced Karma spec reporter with mocha reporter
Improvements
- Webpack optimization plugins are now correctly used only in production
- Added ability to simultaneously use CSS modules and regular CSS
- Added
karma-webpack-with-fast-source-maps
for selective and faster test rebuilds - Simplified environment-based webpack configuration
- Fixed CSS being minified twice with both
cssnano
andcss-loader
- Updated
cssnano
to not use unsafe options by default - Redux devtools now looks for the browser extension if available
- Added webpack entry point for tests to replace file globs in Karma
- Made Webpack compiler script generic so it can accept any webpack configuration file
- Added sample tests for counter redux module
- Replaced
react-hmre
withredbox-react
andreact-transform-hmr
- Disabled verbose uglify warnings during compilation
- Updated route definition file to have access to the redux store
- Updated server start message so link is clickable
ExtractTextPlugin
is now correctly used whenever HMR is disablednpm run deploy
now cleans out~/dist
directory- Miscellaneous folder structure improvements
- Removed unnecessary
bin
file for Karma - Removed unnecessary
NotFoundView
- Re-enabled support for
.jsx
files - Specified compatible Node and NPM engines
Fixes
- Fixed some development-only code not being stripped from production bundles
- Added rimraf for
~/dist
clearing to support Windows users - Fixed miscellaneous path issues for Windows users
- Fixed source maps for Sass files
- Updated server start debug message to display correct host
Deprecations
- Removed
redux-actions
- Removed
dotenv
- Removed
add-module-exports
babel plugin
and a bunch of other things I probably missed. Thanks again for everyone's hard work.
v1.0.0
1.0.0
Huge thanks to @justingreenberg, @neverfox, @patrickheeney, @mtsr, and anybody else who has contributed to this project, you've all taught me a lot and have made this a pleasure to maintain. More changes are coming, and I'll be focusing on general project cleanup for the next week or so.
Features
- Upgraded from Babel 5 to Babel 6 🎉
- Added script to copy static assets from ~src/assets to ~/dist during compilation
- Added CSS Modules (can be toggled on/off in config file)
- Enabled source maps for CSS
- Added
postcss-loader
- Added
debug
module to replaceconsole.log
- Added
json-loader
- Added
url-loader
for(png|jpg)
files - Added
redux-actions
with demo - Upgraded
redux-devtools
from^3.0.0-beta
to^3.0.0
- Upgraded
redux-simple-router
from^0.0.10
to^1.0.0
- Upgraded
isparta
from^2.0.0
to^3.0.0
- Replaced
karma-sinon-chai
withkarma-chai-sinon
for peerDependencies fix - Added sample asynchronous action
- Added example
composes
style to demo CSS modules inHomeView
- Added
lint:fix
npm script - Added CONTRIBUTING document
- Added placeholder favicon
Improvements
- Refactored application to follow ducks-like architecture
- Improved how configuration determines when to apply HMR-specific Babel transforms
- Replaced explicit aliases with
resolve.root
- Renamed karma configuration file to more widely-known
karma.conf
- Made
CoreLayout
a pure (stateless) component - Renamed debug namespace from
kit:*
toapp:*
- Standardized coding conventions
- Added ability to easily specify environment-specific configuration overrides
- Extended available configuration options
- Improved miscellaneous documentation
- Refactored webpack middleware in express server into separate files
Fixes
- Fixed DevTools imports so they are longer included in production builds
- Added CSS best practices to root tag, node, and
core.scss
file - Disabled manifest extraction due to broken production builds
- Updated Webpack dev server uses explicit publicPath during live development
- Fixed Karma running tests twice after file change during watch mode
Deprecations
- Removed
eslint-config-airbnb
- Deprecated support for Node
^4.0.0
v0.18.0
0.18.0
Features
- Replaces
webpack-dev-server
withExpress
and webpack middleware - Replaces
redux-router
withredux-simple-router
- Use
postcss-loader
for autoprefixing rather than autoprefixer-loader - Configuration will now warn you of missing dependencies for vendor bundle
- Upgrade
react-router
from1.0.0-rc1
->^1.0.0
- Upgrade
css-loader
from0.21.0
->0.23.0
- Upgrade
eslint-config-airbnb
from0.1.0
to^1.0.0
- Upgrade
karma-spec-reporter
from0.0.21
to0.0.22
- Upgrade
extract-text-webpack-plugin
from^0.8.0
to^0.9.0
Improvements
- Compiled
index.html
is now minified - Content hashes are now injected directly into the filename rather than appended as query strings
- Better reporting of webpack build status
- Use object-style configuration for
sass-loader
rather than inline query string - Rename
test:lint
task tolint:tests
- Various documentation improvements
Fixes
- Content hash is now longer duplicated in CSS bundle
- Karma plugins are autoloaded now, rather than explicitly defined
- Removes extraneous wrapping div in
Root
container - Fixes awkwardly named arguments to
createReducer
utility - Add missing alias to
~/src/store
v0.17.0
Features
- Karma coverage now generates proper coverage reports
- Added chai-as-promised
- Added
npm run lint
script to lint all~/src
code - Added
npm run test:lint
script to lint all*.spec.js
files in~/tests
- Updated
npm run deploy
to explicitly run linter on source code - Added
dotenv
(thanks dougvk)
Improvements
- Renamed application entry point from
index.js
->app.js
(clarifies intent and helps with coverage reports) - Refactored sample counter constants and actions to their appropriate locations (thanks kyleect)
- Devtools in
npm run dev:nw
now take up the full window (thanks jhgg) - Webpack no longer runs an eslint pre-loader (cleans up console messages while developing)
- Moved tests into their own directory (alleviates lint/organization issues)
- Renamed
stores
tostore
to be more intuitive - Webpack-dev-server now uses a configurable host (thanks waynelkh)
- Sass-loader is now configured independently of its loader definition
- Upgraded
redux-devtools
from^2.0.0
->^3.0.0
- Upgraded
react-transform-catch-errors
from^0.1.0
->^1.0.0
Fixes
- Fix .editorconfig missing a setting that caused it to not be picked up in all IDE's
- Cleans up miscellaneous lint errors.
v0.16.0
Features
- Adds redux-router (thanks to dougvk)
- Adds redux-thunk middleware
- Adds loaders for font files (thanks to nodkz)
- Adds url loader
- Upgrades React dependencies to stable
^0.14.0
- Upgrades react-redux to
^4.0.0
Improvements
- Cleans up unused configuration settings
- configureStore no longer relies on a global variable to determine whether or not to enable devtool middleware
- Removes unused invariant and ImmutableJS vendor dependencies
- Removes unused webpack-clean plugin
- Tweaks .js loader configuration to make it easier to add json-loader
- Updates counter example to demonstrate
mapDispatchToProps
- Force
components
directory inclusion - Documentation improvements
v0.15.2
v0.15.1
v0.15.0
Fixes
- HMR is now longer enabled for simple compilations. You can now compile development builds that won't constantly ping a non-existent dev server.
- react-transform-hmr now only runs when HMR is enabled.
Improvements
- Unit tests now only run in watch mode when explicitly requested. This makes it much more convenient to run tests on any environment without having to struggle with the
singleRun
flag in Karma. - There is now only a single webpack configuration (rather than one for the client and one for the server). As a result, configuration has once again been split into a base configuration which is then extended based on the current
NODE_ENV
.
Deprecations
- Removed Koa server (sad days).
v0.14.0
Features
- Replaces
react-transform-webpack-hmr
with its replacementreact-transform-hmr
. Thanks to daviferreira. - Replaces
delicate-error-reporter
withredbox-react
. Thanks to bulby97. - Created a
no-server
branch here to make it easier for users who don't care about Koa.
Improvements
- Renames
client
directory tosrc
to be more intuitive. inline-source-map
has been replaced bysource-map
as the default webpack devTool to reduce build sizes.- Refactors configuration file to focus on commonly-configured options rather than mixing them with internal configuration.
- Swaps
dev
anddev:debug
so debug tools are now enabled by default and can be disabled instead withdev:no-debug
. - Repositions Redux devtools so they no longer block errors displayed by
redbox-react
. - Adds explicit directory references to some
import
statements to clarify which are from fromnpm
and which are local.
Fixes
- Fixes naming in
HomeView
wheremapStateToProps
was incorrectly written asmapDispatchToProps
.
Deprecations
- Removes local test utilities (in
~/src/utils/test
).