cloudcmd 18.0.0 → 18.0.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/ChangeLog +13 -0
- package/HELP.md +3 -1
- package/README.md +1 -1
- package/bin/cloudcmd.mjs +1 -1
- package/dist/cloudcmd.css +1 -1
- package/dist/sw.js +1 -1
- package/dist-dev/cloudcmd.css +14 -12
- package/dist-dev/sw.js +1 -1
- package/font/fontello.eot +0 -0
- package/font/fontello.json +12 -0
- package/font/fontello.svg +5 -3
- package/font/fontello.ttf +0 -0
- package/font/fontello.woff +0 -0
- package/font/fontello.woff2 +0 -0
- package/package.json +2 -2
package/ChangeLog
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
2024.08.16, v18.0.2
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- 3d03efbe css: show links in one small screens
|
|
5
|
+
|
|
6
|
+
2024.08.16, v18.0.1
|
|
7
|
+
|
|
8
|
+
fix:
|
|
9
|
+
- 62ed8411 bin: validateArgs is not a function (#147)
|
|
10
|
+
|
|
11
|
+
feature:
|
|
12
|
+
- 9ec94dee cloudcmd: chalk v5.3.0
|
|
13
|
+
|
|
1
14
|
2024.08.16, v18.0.0
|
|
2
15
|
|
|
3
16
|
feature:
|
package/HELP.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v18.0.
|
|
1
|
+
# Cloud Commander v18.0.2
|
|
2
2
|
|
|
3
3
|
### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]
|
|
4
4
|
|
|
@@ -1095,6 +1095,8 @@ There are a lot of ways to be involved in `Cloud Commander` development:
|
|
|
1095
1095
|
|
|
1096
1096
|
## Version history
|
|
1097
1097
|
|
|
1098
|
+
- *2024.08.16*, **[v18.0.2](//github.com/coderaiser/cloudcmd/releases/tag/v18.0.2)**
|
|
1099
|
+
- *2024.08.16*, **[v18.0.1](//github.com/coderaiser/cloudcmd/releases/tag/v18.0.1)**
|
|
1098
1100
|
- *2024.08.16*, **[v18.0.0](//github.com/coderaiser/cloudcmd/releases/tag/v18.0.0)**
|
|
1099
1101
|
- *2024.08.16*, **[v17.4.4](//github.com/coderaiser/cloudcmd/releases/tag/v17.4.4)**
|
|
1100
1102
|
- *2024.07.27*, **[v17.4.3](//github.com/coderaiser/cloudcmd/releases/tag/v17.4.3)**
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v18.0.
|
|
1
|
+
# Cloud Commander v18.0.2 [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL]
|
|
2
2
|
|
|
3
3
|
### [Main][MainURL] [Blog][BlogURL] [Support][SupportURL] [Demo][DemoURL]
|
|
4
4
|
|
package/bin/cloudcmd.mjs
CHANGED
|
@@ -164,7 +164,7 @@ else
|
|
|
164
164
|
main();
|
|
165
165
|
|
|
166
166
|
async function main() {
|
|
167
|
-
const validateArgs = await simport('@putout/cli-validate-args');
|
|
167
|
+
const {validateArgs} = await simport('@putout/cli-validate-args');
|
|
168
168
|
|
|
169
169
|
const error = await validateArgs(args, [
|
|
170
170
|
...yargsOptions.boolean,
|