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 +11 -0
- package/HELP.md +5 -3
- package/README.md +2 -2
- package/bin/cloudcmd.mjs +3 -2
- package/bin/release.mjs +2 -1
- package/dist/cloudcmd.common.js +3 -3
- package/dist/cloudcmd.common.js.map +1 -1
- package/dist/cloudcmd.js +1 -1
- package/dist/cloudcmd.js.map +1 -1
- package/dist/modules/cloud.js +1 -1
- package/dist/modules/config.js +1 -1
- package/dist/modules/edit-file-vim.js +1 -1
- package/dist/modules/edit-names-vim.js +1 -1
- package/dist/modules/edit.js +1 -1
- package/dist/modules/markdown.js +1 -1
- package/dist/modules/menu.js +1 -1
- package/dist/modules/operation.js +1 -1
- package/dist/modules/terminal-run.js +1 -1
- package/dist/modules/upload.js +1 -1
- package/dist/modules/view.js +1 -1
- package/dist/sw.js +1 -1
- package/dist/sw.js.map +1 -1
- package/dist-dev/cloudcmd.common.js +15 -15
- package/dist-dev/cloudcmd.js +2 -2
- package/dist-dev/sw.js +12 -1
- package/package.json +3 -3
- package/server/cloudcmd.js +1 -0
- package/server/columns.js +1 -0
- package/server/env.js +1 -1
- package/server/exit.js +1 -0
- package/server/repl.js +1 -0
- package/server/rest/index.js +1 -0
- package/server/rest/info.js +1 -0
- package/server/server.mjs +3 -2
package/ChangeLog
CHANGED
package/HELP.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v16.
|
|
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.
|
|
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);
|