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/ChangeLog CHANGED
@@ -1,3 +1,14 @@
1
+ 2023.09.04, v16.17.0
2
+
3
+ feature:
4
+ - 224e5397 docker: use bun instead of node
5
+ - 4b9267f3 package: edward v14.2.0
6
+
7
+ 2023.08.10, v16.16.3
8
+
9
+ feature:
10
+ - 354c137d package: console-io v14.0.0
11
+
1
12
  2023.08.09, v16.16.2
2
13
 
3
14
  feature:
package/HELP.md CHANGED
@@ -1,4 +1,4 @@
1
- # Cloud Commander v16.16.2
1
+ # Cloud Commander v16.17.0
2
2
 
3
3
  ### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]
4
4
 
@@ -669,7 +669,7 @@ npm i cloudcmd express socket.io -S
669
669
  And create `index.js`:
670
670
 
671
671
  ```js
672
- import http from 'http';
672
+ import http from 'node:http';
673
673
  import cloudcmd from 'cloudcmd';
674
674
  import {Server} from 'socket.io';
675
675
  import express from 'express';
@@ -722,7 +722,7 @@ server.listen(port);
722
722
  Here is example with two `Config Managers`:
723
723
 
724
724
  ```js
725
- import http from 'http';
725
+ import http from 'node:http';
726
726
  import cloudcmd from 'cloudcmd';
727
727
  import {Server} from 'socket.io';
728
728
  import express from 'express';
@@ -1093,6 +1093,8 @@ There are a lot of ways to be involved in `Cloud Commander` development:
1093
1093
 
1094
1094
  ## Version history
1095
1095
 
1096
+ - *2023.09.04*, **[v16.17.0](//github.com/coderaiser/cloudcmd/releases/tag/v16.17.0)**
1097
+ - *2023.08.10*, **[v16.16.3](//github.com/coderaiser/cloudcmd/releases/tag/v16.16.3)**
1096
1098
  - *2023.08.09*, **[v16.16.2](//github.com/coderaiser/cloudcmd/releases/tag/v16.16.2)**
1097
1099
  - *2023.08.07*, **[v16.16.1](//github.com/coderaiser/cloudcmd/releases/tag/v16.16.1)**
1098
1100
  - *2023.07.09*, **[v16.16.0](//github.com/coderaiser/cloudcmd/releases/tag/v16.16.0)**
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Cloud Commander v16.16.2 [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL]
1
+ # Cloud Commander v16.17.0 [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL]
2
2
 
3
3
  ### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]
4
4
 
@@ -68,7 +68,7 @@ npm i cloudcmd express socket.io -S
68
68
  And create `index.js`:
69
69
 
70
70
  ```js
71
- import http from 'http';
71
+ import http from 'node:http';
72
72
  import cloudcmd from 'cloudcmd';
73
73
  import {Server} from 'socket.io';
74
74
  import express from 'express';
package/bin/cloudcmd.mjs CHANGED
@@ -1,10 +1,11 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import {createRequire} from 'module';
4
- import {promisify} from 'util';
3
+ import {createRequire} from 'node:module';
4
+ import {promisify} from 'node:util';
5
5
  import tryToCatch from 'try-to-catch';
6
6
  import {createSimport} from 'simport';
7
7
  import parse from 'yargs-parser';
8
+ import process from 'node:process';
8
9
  import exit from '../server/exit.js';
9
10
  import {
10
11
  createConfig,
package/bin/release.mjs CHANGED
@@ -1,12 +1,13 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import {promisify} from 'util';
3
+ import {promisify} from 'node:util';
4
4
  import tryToCatch from 'try-to-catch';
5
5
  import {createSimport} from 'simport';
6
6
  import minor from 'minor';
7
7
  import _place from 'place';
8
8
  import rendy from 'rendy';
9
9
  import shortdate from 'shortdate';
10
+ import process from 'node:process';
10
11
 
11
12
  const simport = createSimport(import.meta.url);
12
13
  const place = promisify(_place);