README.md in frontrunner-0.1.0 vs README.md in frontrunner-0.1.1

- old
+ new

@@ -154,12 +154,20 @@ ```sh npm install react react-dom -S ``` -[React Hot Loader](http://gaearon.github.io/react-hot-loader/) and support for `jsx` are already included. See [Hot Module Replacement](#hot-module-replacement) for how to activate. +Support for `jsx` is already included. +Add the [React Hot Loader](http://gaearon.github.io/react-hot-loader/) with: + +```sh +npm install react-hot-loader -D +``` + +See [Hot Module Replacement](#hot-module-replacement) for how to activate. + ## Entry Points During installation, a single [entry point](https://webpack.github.io/docs/multiple-entry-points.html) - `application` - is created. To add another entry point - for instance, for a blog - create `blog.js` and add it to `webpack.config.js`. @@ -198,9 +206,10 @@ ### Heroku On Heroku, you’ll need to use multiple buildpacks. ```sh +heroku buildpacks:clear heroku buildpacks:add heroku/nodejs heroku buildpacks:add heroku/ruby ``` And ask Heroku to install dev dependencies from `package.json`.