cloudcmd 15.9.15 → 16.0.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,12 @@
1
+ 2022.02.19, v16.0.0
2
+
3
+ feature:
4
+ - (cloudcmd) drop support of node < 16
5
+ - (package) supertape v7.1.0
6
+ - (package) eslint-plugin-putout v13.11.0
7
+ - (package) madrun v9.0.0
8
+ - (package) putout v25.0.1
9
+
1
10
  2022.01.20, v15.9.15
2
11
 
3
12
  fix:
package/HELP.md CHANGED
@@ -1,4 +1,4 @@
1
- # Cloud Commander v15.9.15
1
+ # Cloud Commander v16.0.0
2
2
 
3
3
  ### [Main][MainURL] [Blog][BlogURL]
4
4
 
@@ -1082,6 +1082,7 @@ There are a lot of ways to be involved in `Cloud Commander` development:
1082
1082
 
1083
1083
  ## Version history
1084
1084
 
1085
+ - *2022.02.19*, **[v16.0.0](//github.com/coderaiser/cloudcmd/releases/tag/v16.0.0)**
1085
1086
  - *2022.01.20*, **[v15.9.15](//github.com/coderaiser/cloudcmd/releases/tag/v15.9.15)**
1086
1087
  - *2022.01.13*, **[v15.9.14](//github.com/coderaiser/cloudcmd/releases/tag/v15.9.14)**
1087
1088
  - *2021.12.23*, **[v15.9.13](//github.com/coderaiser/cloudcmd/releases/tag/v15.9.13)**
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Cloud Commander v15.9.15 [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL]
1
+ # Cloud Commander v16.0.0 [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL]
2
2
 
3
3
  ### [Main][MainURL] [Blog][BlogURL]
4
4
 
@@ -253,12 +253,7 @@ function getAttribute(type) {
253
253
  }
254
254
 
255
255
  module.exports._getSize = getSize;
256
- function getSize(file) {
257
- const {
258
- size,
259
- type,
260
- } = file;
261
-
256
+ function getSize({size, type}) {
262
257
  if (type === 'directory')
263
258
  return '&lt;dir&gt;';
264
259