build(peer-deps): use uws fork (#2781)

* feat: use uws fork

* chore: update to 149 for uws
This commit is contained in:
Crawl
2018-08-24 16:51:33 +02:00
committed by GitHub
parent cb08a0961a
commit 9b329a457c
4 changed files with 5 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ if (browser) {
exports.WebSocket = window.WebSocket; // eslint-disable-line no-undef
} else {
try {
exports.WebSocket = require('uws');
exports.WebSocket = require('@discordjs/uws');
} catch (err) {
exports.WebSocket = require('ws');
}