mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
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:
parent
a5e7ad5e09
commit
21ceaa4c58
2
app/react-native/src/server/index.js
vendored
2
app/react-native/src/server/index.js
vendored
@ -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));
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user