decharge-scout 2.2.0 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/wallet-server.js +2 -1
package/package.json
CHANGED
package/src/wallet-server.js
CHANGED
|
@@ -13,7 +13,8 @@ import { dirname } from 'path';
|
|
|
13
13
|
import open from 'open';
|
|
14
14
|
import chalk from 'chalk';
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
// WebSocket.Server is the correct export for ws package
|
|
17
|
+
const WebSocketServer = WebSocket.Server;
|
|
17
18
|
|
|
18
19
|
const __filename = fileURLToPath(import.meta.url);
|
|
19
20
|
const __dirname = dirname(__filename);
|