cloudcmd 15.9.14 → 16.0.1

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,27 @@
1
+ 2022.04.22, v16.0.1
2
+
3
+ feature:
4
+ - (package) dword v14.0.0
5
+ - (package) restafary v11.0.0
6
+ - (package) @cloudcmd/stub v4.0.1
7
+ - (package) win32 v7.0.0
8
+ - (package) eslint-plugin-putout v14.4.0
9
+
10
+
11
+ 2022.02.19, v16.0.0
12
+
13
+ feature:
14
+ - (cloudcmd) drop support of node < 16
15
+ - (package) supertape v7.1.0
16
+ - (package) eslint-plugin-putout v13.11.0
17
+ - (package) madrun v9.0.0
18
+ - (package) putout v25.0.1
19
+
20
+ 2022.01.20, v15.9.15
21
+
22
+ fix:
23
+ - (css) icons (#368)
24
+
1
25
  2022.01.13, v15.9.14
2
26
 
3
27
  fix:
package/HELP.md CHANGED
@@ -1,4 +1,4 @@
1
- # Cloud Commander v15.9.14
1
+ # Cloud Commander v16.0.1
2
2
 
3
3
  ### [Main][MainURL] [Blog][BlogURL]
4
4
 
@@ -1082,6 +1082,9 @@ There are a lot of ways to be involved in `Cloud Commander` development:
1082
1082
 
1083
1083
  ## Version history
1084
1084
 
1085
+ - *2022.04.22*, **[v16.0.1](//github.com/coderaiser/cloudcmd/releases/tag/v16.0.1)**
1086
+ - *2022.02.19*, **[v16.0.0](//github.com/coderaiser/cloudcmd/releases/tag/v16.0.0)**
1087
+ - *2022.01.20*, **[v15.9.15](//github.com/coderaiser/cloudcmd/releases/tag/v15.9.15)**
1085
1088
  - *2022.01.13*, **[v15.9.14](//github.com/coderaiser/cloudcmd/releases/tag/v15.9.14)**
1086
1089
  - *2021.12.23*, **[v15.9.13](//github.com/coderaiser/cloudcmd/releases/tag/v15.9.13)**
1087
1090
  - *2021.12.16*, **[v15.9.12](//github.com/coderaiser/cloudcmd/releases/tag/v15.9.12)**
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Cloud Commander v15.9.14 [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL]
1
+ # Cloud Commander v16.0.1 [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL]
2
2
 
3
3
  ### [Main][MainURL] [Blog][BlogURL]
4
4
 
@@ -229,7 +229,8 @@ module.exports.buildFromJSON = (params) => {
229
229
  owner,
230
230
  mode,
231
231
  });
232
- }).join('');
232
+ })
233
+ .join('');
233
234
 
234
235
  fileTable += '</ul>';
235
236
 
@@ -253,12 +254,7 @@ function getAttribute(type) {
253
254
  }
254
255
 
255
256
  module.exports._getSize = getSize;
256
- function getSize(file) {
257
- const {
258
- size,
259
- type,
260
- } = file;
261
-
257
+ function getSize({size, type}) {
262
258
  if (type === 'directory')
263
259
  return '&lt;dir&gt;';
264
260