cloudcmd 16.16.2 → 16.17.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/server/server.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  import cloudcmd from './cloudcmd.js';
2
- import http from 'http';
3
- import {promisify} from 'util';
2
+ import http from 'node:http';
3
+ import {promisify} from 'node:util';
4
4
  import currify from 'currify';
5
5
  import squad from 'squad';
6
6
  import tryToCatch from 'try-to-catch';
@@ -12,6 +12,7 @@ import opn from 'open';
12
12
  import express from 'express';
13
13
  import {Server} from 'socket.io';
14
14
  import tryRequire from 'tryrequire';
15
+ import process from 'node:process';
15
16
 
16
17
  const bind = (f, self) => f.bind(self);
17
18