Fix(react-native) add missing new

Fixes this error on startup:

```
this.wsServer = _ws2.default.Server({ server: this.httpServer });
                                 ^

TypeError: Class constructor WebSocketServer cannot be invoked without 'new'
    at new Server (.../node_modules/@storybook/react-native/dist/server/index.js:48:34)
```
This commit is contained in:
Joey Baker 2017-05-31 14:36:35 -07:00 committed by GitHub
parent a5e7ad5e09
commit 21ceaa4c58

View File

@ -11,7 +11,7 @@ export default class Server {
this.expressApp = express();
this.expressApp.use(storybook(options));
this.httpServer.on('request', this.expressApp);
this.wsServer = ws.Server({ server: this.httpServer });
this.wsServer = new ws.Server({ server: this.httpServer });
this.wsServer.on('connection', s => this.handleWS(s));
}