cloudcmd 17.4.1 → 17.4.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloudcmd",
3
- "version": "17.4.1",
3
+ "version": "17.4.2",
4
4
  "type": "commonjs",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "File manager for the web with console and editor",
@@ -118,7 +118,7 @@
118
118
  "jaguar": "^6.0.0",
119
119
  "jju": "^1.3.0",
120
120
  "jonny": "^3.0.0",
121
- "just-snake-case": "^1.1.0",
121
+ "just-snake-case": "^3.2.0",
122
122
  "markdown-it": "^14.0.0",
123
123
  "mellow": "^3.0.0",
124
124
  "nano-memoize": "^3.0.16",
@@ -127,7 +127,7 @@
127
127
  "once": "^1.4.0",
128
128
  "onezip": "^6.0.1",
129
129
  "open": "^10.0.3",
130
- "package-json": "^9.0.0",
130
+ "package-json": "^10.0.0",
131
131
  "ponse": "^7.0.0",
132
132
  "pullout": "^5.0.0",
133
133
  "putout": "^35.0.0",
@@ -163,7 +163,7 @@
163
163
  "auto-globals": "^4.0.0",
164
164
  "babel-loader": "^8.0.0",
165
165
  "babel-plugin-macros": "^3.0.0",
166
- "c8": "^9.1.0",
166
+ "c8": "^10.1.2",
167
167
  "cheerio": "^1.0.0-rc.5",
168
168
  "clean-css-loader": "^2.0.0",
169
169
  "codegen.macro": "^4.0.0",
@@ -180,8 +180,8 @@
180
180
  "html-looks-like": "^1.0.2",
181
181
  "html-webpack-plugin": "^4.0.1",
182
182
  "inherits": "^2.0.3",
183
- "just-capitalize": "^1.0.0",
184
- "just-pascal-case": "^1.1.0",
183
+ "just-capitalize": "^3.2.0",
184
+ "just-pascal-case": "^3.2.0",
185
185
  "limier": "^3.0.0",
186
186
  "load.js": "^3.0.0",
187
187
  "madrun": "^10.0.0",
@@ -1,7 +1,7 @@
1
1
  import {dirname} from 'node:path';
2
2
  import {fileURLToPath} from 'node:url';
3
- import test from 'supertape';
4
3
  import fs from 'node:fs';
4
+ import test from 'supertape';
5
5
  import {getColumns, isDev} from './columns.mjs';
6
6
 
7
7
  const __filename = fileURLToPath(import.meta.url);
@@ -1,7 +1,7 @@
1
- import Config from '../config.js';
2
1
  import {once} from 'node:events';
3
2
  import test from 'supertape';
4
3
  import io from 'socket.io-client';
4
+ import Config from '../config.js';
5
5
  import {connect} from '../../test/before.mjs';
6
6
 
7
7
  const config = Config.createConfig();
@@ -3,9 +3,9 @@ import wraptile from 'wraptile';
3
3
  import squad from 'squad';
4
4
  import fullstore from 'fullstore';
5
5
  import io from 'socket.io-client';
6
+ import _forEachKey from 'for-each-key';
6
7
  import log from './log.mjs';
7
8
  import env from '../env.js';
8
- import _forEachKey from 'for-each-key';
9
9
 
10
10
  const noop = () => {};
11
11
  const forEachKey = currify(_forEachKey);
@@ -1,6 +1,6 @@
1
1
  import process from 'node:process';
2
- import test from 'supertape';
3
2
  import {promisify} from 'node:util';
3
+ import test from 'supertape';
4
4
  import tryToCatch from 'try-to-catch';
5
5
  import {connect} from '../../test/before.mjs';
6
6
  import {createConfigManager} from '../cloudcmd.mjs';
@@ -1,7 +1,7 @@
1
1
  import {dirname} from 'node:path';
2
2
  import {fileURLToPath} from 'node:url';
3
- import test from 'supertape';
4
3
  import fs from 'node:fs';
4
+ import test from 'supertape';
5
5
  import {getThemes, isDev} from './theme.mjs';
6
6
 
7
7
  const __filename = fileURLToPath(import.meta.url);
@@ -1,10 +1,10 @@
1
1
  import {dirname, join} from 'node:path';
2
2
  import {fileURLToPath} from 'node:url';
3
+ import {readFileSync} from 'node:fs';
3
4
  import {test, stub} from 'supertape';
4
5
  import serveOnce from 'serve-once';
5
6
  import threadIt from 'thread-it';
6
7
  import userMenu from './user-menu.mjs';
7
- import {readFileSync} from 'node:fs';
8
8
 
9
9
  const __filename = fileURLToPath(import.meta.url);
10
10
  const __dirname = dirname(__filename);
@@ -46,6 +46,7 @@ export const columns = (type, overrides = {}) => {
46
46
  exit = _exit,
47
47
  getColumns = _getColumns,
48
48
  } = overrides;
49
+
49
50
  const addQuotes = (a) => `"${a}"`;
50
51
  const all = Object
51
52
  .keys(getColumns())
@@ -65,6 +66,7 @@ export const theme = (type, overrides = {}) => {
65
66
  exit = _exit,
66
67
  getThemes = _getThemes,
67
68
  } = overrides;
69
+
68
70
  const addQuotes = (a) => `"${a}"`;
69
71
  const all = Object
70
72
  .keys(getThemes())