Skip to content

Commit

Permalink
minor patch to fix npmjs release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dindaleon committed Jan 22, 2016
1 parent d6521c3 commit f132187
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "hapi-react-starter-kit",
"version": "0.1.4",
"version": "0.1.5",
"description": "A hapi React Starter kit with react-router, redux, react-transform",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -141,5 +141,5 @@
"node": ">= 4.1.1",
"npm": ">= 1.0.0"
},
"private": true
"private": false
}
3 changes: 2 additions & 1 deletion src/server.js
Expand Up @@ -136,6 +136,7 @@ const startServer = ( callback ) => {
register: rooms,
options: {
server: wsServer
// server: apiServer //enable this for deployment on OpenShift
}
}
], (err) => {
Expand Down Expand Up @@ -187,7 +188,7 @@ const startServer = ( callback ) => {
const store = configureStore(reduxReactRouter, getRoutes, activeReducers, createHistory, client);

const output = (
renderToString( <Html store={ store }/> )
renderToString( <Html store={ store } /> )
);

const hydrateOnClient = () => {
Expand Down

0 comments on commit f132187

Please sign in to comment.