cloudcmd 19.1.21 → 19.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/ChangeLog +22 -0
- package/HELP.md +3 -1
- package/README.md +1 -1
- package/bin/{cloudcmd.mjs → cloudcmd.js} +5 -5
- package/common/callbackify.js +1 -3
- package/common/datetime.js +2 -4
- package/common/try-to-promise-all.js +2 -3
- package/dist/cloudcmd.common.js +2 -2
- 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/cloud.js.map +1 -1
- package/dist/modules/command-line.js +1 -1
- package/dist/modules/command-line.js.map +1 -1
- package/dist/modules/config.js +1 -1
- package/dist/modules/config.js.map +1 -1
- package/dist/modules/contact.js +1 -1
- package/dist/modules/contact.js.map +1 -1
- package/dist/modules/edit-file-vim.js +1 -1
- package/dist/modules/edit-file-vim.js.map +1 -1
- package/dist/modules/edit-file.js +1 -1
- package/dist/modules/edit-file.js.map +1 -1
- package/dist/modules/edit-names-vim.js +1 -1
- package/dist/modules/edit-names-vim.js.map +1 -1
- package/dist/modules/edit-names.js +1 -1
- package/dist/modules/edit-names.js.map +1 -1
- package/dist/modules/edit.js +1 -1
- package/dist/modules/edit.js.map +1 -1
- package/dist/modules/help.js +1 -1
- package/dist/modules/help.js.map +1 -1
- package/dist/modules/konsole.js +1 -1
- package/dist/modules/konsole.js.map +1 -1
- package/dist/modules/markdown.js +1 -1
- package/dist/modules/markdown.js.map +1 -1
- package/dist/modules/menu.js +1 -1
- package/dist/modules/menu.js.map +1 -1
- package/dist/modules/operation.js +1 -1
- package/dist/modules/operation.js.map +1 -1
- package/dist/modules/polyfill.js +1 -1
- package/dist/modules/polyfill.js.map +1 -1
- package/dist/modules/terminal-run.js +1 -1
- package/dist/modules/terminal-run.js.map +1 -1
- package/dist/modules/terminal.js +1 -1
- package/dist/modules/terminal.js.map +1 -1
- package/dist/modules/upload.js +1 -1
- package/dist/modules/upload.js.map +1 -1
- package/dist/modules/user-menu.js +1 -1
- package/dist/modules/user-menu.js.map +1 -1
- package/dist/modules/view.js +1 -1
- package/dist/modules/view.js.map +1 -1
- package/dist/sw.js +1 -1
- package/dist/sw.js.map +1 -1
- package/dist-dev/cloudcmd.common.js +335 -366
- package/dist-dev/cloudcmd.js +1 -1
- package/dist-dev/modules/cloud.js +1 -1
- package/dist-dev/modules/command-line.js +1 -1
- package/dist-dev/modules/config.js +1 -1
- package/dist-dev/modules/edit.js +1 -1
- package/dist-dev/modules/konsole.js +1 -1
- package/dist-dev/modules/menu.js +1 -1
- package/dist-dev/modules/operation.js +1 -1
- package/dist-dev/modules/upload.js +1 -1
- package/dist-dev/modules/user-menu.js +1 -1
- package/dist-dev/modules/view.js +1 -1
- package/dist-dev/sw.js +6 -6
- package/package.json +17 -16
- package/server/auth.js +4 -5
- package/server/{cloudcmd.mjs → cloudcmd.js} +7 -7
- package/server/{config.mjs → config.js} +16 -24
- package/server/depstore.js +1 -3
- package/server/distribute/{export.mjs → export.js} +1 -1
- package/server/distribute/{import.mjs → import.js} +2 -2
- package/server/exit.js +2 -3
- package/server/markdown/index.js +12 -12
- package/server/markdown/worker.js +3 -3
- package/server/prefixer.js +1 -3
- package/server/repl.js +4 -6
- package/server/rest/info.js +7 -6
- package/server/root.js +2 -4
- package/server/{route.mjs → route.js} +2 -2
- package/server/{server.mjs → server.js} +1 -1
- package/server/show-config.js +3 -5
- package/server/template.js +6 -4
- package/server/terminal.js +4 -3
- package/server/{user-menu.mjs → user-menu.js} +19 -8
- package/server/{validate.mjs → validate.js} +2 -2
- package/static/user-menu.js +5 -5
- /package/common/{cloudfunc.mjs → cloudfunc.js} +0 -0
- /package/common/{entity.mjs → entity.js} +0 -0
- /package/common/{util.mjs → util.js} +0 -0
- /package/rules/{split-autoglobals-with-tape.mjs → split-autoglobals-with-tape.js} +0 -0
- /package/server/{columns.mjs → columns.js} +0 -0
- /package/server/distribute/{log.mjs → log.js} +0 -0
- /package/server/{env.mjs → env.js} +0 -0
- /package/server/{modulas.mjs → modulas.js} +0 -0
- /package/server/rest/{index.mjs → index.js} +0 -0
- /package/server/{theme.mjs → theme.js} +0 -0
package/ChangeLog
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
2026.02.03, v19.3.0
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- 4533a25c cloudcmd: migrate to ESM
|
|
5
|
+
- e8a81c49 client: dom: events: migrate to ESM
|
|
6
|
+
- 071141bc client: terminal-run: migrate to ESM
|
|
7
|
+
|
|
8
|
+
2026.02.03, v19.2.0
|
|
9
|
+
|
|
10
|
+
feature:
|
|
11
|
+
- bb32f7c4 client: dom: migrate to ESM
|
|
12
|
+
- 457c83db client: migrate to ESM
|
|
13
|
+
- f8a941bd client: modules: markdown: migrate to ESM
|
|
14
|
+
- 9d6cffaf client: polifyll: migrate to ESM
|
|
15
|
+
- 5b704d06 client: edit-names: migrate to ESM
|
|
16
|
+
- 2c2ca8eb client: edit-file: migrate to ESM
|
|
17
|
+
- c9f57c5f client: modules: edit-file-vim: migrate to ESM
|
|
18
|
+
- 327ac9de client: modules: help: migrate to ESM
|
|
19
|
+
- dc34ee87 cloudcmd: @putout/plugin-cloudcmd v5.0.0
|
|
20
|
+
- 3cd3695b client: modules: edit-names-vim: migrate to ESM
|
|
21
|
+
- dfcbfd63 client: modules: terminal: migrate to ESM
|
|
22
|
+
|
|
1
23
|
2026.02.02, v19.1.21
|
|
2
24
|
|
|
3
25
|
feature:
|
package/HELP.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.
|
|
1
|
+
# Cloud Commander v19.3.0
|
|
2
2
|
|
|
3
3
|
### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]
|
|
4
4
|
|
|
@@ -1111,6 +1111,8 @@ There are a lot of ways to be involved in `Cloud Commander` development:
|
|
|
1111
1111
|
|
|
1112
1112
|
## Version history
|
|
1113
1113
|
|
|
1114
|
+
- *2026.02.03*, **[v19.3.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.3.0)**
|
|
1115
|
+
- *2026.02.03*, **[v19.2.0](//github.com/coderaiser/cloudcmd/releases/tag/v19.2.0)**
|
|
1114
1116
|
- *2026.02.02*, **[v19.1.21](//github.com/coderaiser/cloudcmd/releases/tag/v19.1.21)**
|
|
1115
1117
|
- *2026.01.31*, **[v19.1.20](//github.com/coderaiser/cloudcmd/releases/tag/v19.1.20)**
|
|
1116
1118
|
- *2026.01.30*, **[v19.1.19](//github.com/coderaiser/cloudcmd/releases/tag/v19.1.19)**
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.
|
|
1
|
+
# Cloud Commander v19.3.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
|
|
|
@@ -7,10 +7,10 @@ import {tryToCatch} from 'try-to-catch';
|
|
|
7
7
|
import {createSimport} from 'simport';
|
|
8
8
|
import parse from 'yargs-parser';
|
|
9
9
|
import exit from '../server/exit.js';
|
|
10
|
-
import {createConfig, configPath} from '../server/config.
|
|
11
|
-
import * as env from '../server/env.
|
|
10
|
+
import {createConfig, configPath} from '../server/config.js';
|
|
11
|
+
import * as env from '../server/env.js';
|
|
12
12
|
import prefixer from '../server/prefixer.js';
|
|
13
|
-
import * as validate from '../server/validate.
|
|
13
|
+
import * as validate from '../server/validate.js';
|
|
14
14
|
|
|
15
15
|
process.on('unhandledRejection', exit);
|
|
16
16
|
|
|
@@ -248,7 +248,7 @@ async function main() {
|
|
|
248
248
|
if (args.showConfig)
|
|
249
249
|
await showConfig();
|
|
250
250
|
|
|
251
|
-
const {distributeImport} = await simport('../server/distribute/import.
|
|
251
|
+
const {distributeImport} = await simport('../server/distribute/import.js');
|
|
252
252
|
const importConfig = promisify(distributeImport);
|
|
253
253
|
|
|
254
254
|
await start(options, config);
|
|
@@ -279,7 +279,7 @@ function version() {
|
|
|
279
279
|
}
|
|
280
280
|
|
|
281
281
|
async function start(options, config) {
|
|
282
|
-
const SERVER =
|
|
282
|
+
const SERVER = `../server/server.js`;
|
|
283
283
|
|
|
284
284
|
if (!args.server)
|
|
285
285
|
return;
|
package/common/callbackify.js
CHANGED
package/common/datetime.js
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
import {tryToCatch} from 'try-to-catch';
|
|
2
2
|
|
|
3
|
-
const {tryToCatch} = require('try-to-catch');
|
|
4
3
|
const all = Promise.all.bind(Promise);
|
|
5
4
|
|
|
6
|
-
|
|
5
|
+
export default async (a) => {
|
|
7
6
|
const [e, result = []] = await tryToCatch(all, a);
|
|
8
7
|
|
|
9
8
|
return [
|