Skip to content
This repository has been archived by the owner on Nov 24, 2021. It is now read-only.

Commit

Permalink
v0.1.5 - Moved dashboard to npm 'dev' as it still has issues on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanko committed May 15, 2017
1 parent 334ea43 commit 60d60da
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
15 changes: 13 additions & 2 deletions README.md
Expand Up @@ -86,9 +86,15 @@ $ npm start
Visit `http://localhost:3000/` from your browser of choice.
Server is visible from the local network as well.

![Running in the iTerm2](http://i.imgur.com/IxamMBh.png)
### Running it with [webpack dashboard](https://github.com/FormidableLabs/webpack-dashboard)

```
$ npm run dev
```

It is using [webpack dashboard](https://github.com/FormidableLabs/webpack-dashboard), so please note the following:
**Note for Windows users:** webpack dashboard still have issues with Windows, so use `npm start` until those are resolved.

![Running in the iTerm2](http://i.imgur.com/IxamMBh.png)

**OS X Terminal.app users:** Make sure that **View → Allow Mouse Reporting** is enabled, otherwise scrolling through logs and modules won't work. If your version of Terminal.app doesn't have this feature, you may want to check out an alternative such as [iTerm2](https://www.iterm2.com/).

Expand Down Expand Up @@ -161,6 +167,11 @@ npm run hook-remove

## Changelog

#### 0.1.5

* `npm start` is not using `webpack-dashboard` by default cause it still has issues with Windows
* Moved `prop-types` from `devDependencies` to `dependencies`

#### 0.1.4

* Resolved React 15.5 [deprecation warnings](https://facebook.github.io/react/blog/2017/04/07/react-v15.5.0.html#new-deprecation-warnings)
Expand Down
9 changes: 5 additions & 4 deletions package.json
@@ -1,12 +1,13 @@
{
"name": "react-redux-webpack2-boilerplate",
"version": "0.1.4",
"version": "0.1.5",
"private": false,
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dashboard -t 'React-Redux Boilerplate' -- webpack-dev-server --colors --no-info",
"start": "webpack-dev-server --colors",
"dev": "webpack-dashboard -t 'React-Redux Boilerplate' -- webpack-dev-server --colors --no-info",
"build": "rm -rf ./build && NODE_ENV=\"production\" webpack",
"lint-break-on-errors": "eslint ./source/js ./webpack.config.js -f table --ext .js --ext .jsx",
"lint": "eslint ./source/js ./webpack.config.js -f table --ext .js --ext .jsx || true",
Expand Down Expand Up @@ -40,20 +41,20 @@
"node-sass": "^3.13.0",
"postcss-loader": "^1.1.1",
"prepush": "^3.1.11",
"prop-types": "^15.5.8",
"redux-logger": "^2.7.4",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dashboard": "^0.2.0",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "^2.2.1"
},
"dependencies": {
"babel-polyfill": "^6.16.0",
"es6-promise": "^3.1.2",
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
"prop-types": "^15.5.8",
"react": "^15.5.0",
"react-dom": "^15.5.0",
"react-redux": "^4.4.0",
Expand Down

0 comments on commit 60d60da

Please sign in to comment.