cloudcmd 19.8.3 → 19.8.5
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 +10 -0
- package/HELP.md +3 -1
- package/README.md +1 -1
- package/dist/cloudcmd.common.js +32 -32
- package/dist/cloudcmd.common.js.map +1 -1
- package/dist/sw.js +1 -1
- package/dist/sw.js.map +1 -1
- package/dist-dev/cloudcmd.common.js +12 -12
- package/dist-dev/sw.js +1 -1
- package/package.json +3 -3
package/ChangeLog
CHANGED
package/HELP.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.8.
|
|
1
|
+
# Cloud Commander v19.8.5
|
|
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.03.23*, **[v19.8.5](//github.com/coderaiser/cloudcmd/releases/tag/v19.8.5)**
|
|
1115
|
+
- *2026.03.22*, **[v19.8.4](//github.com/coderaiser/cloudcmd/releases/tag/v19.8.4)**
|
|
1114
1116
|
- *2026.03.22*, **[v19.8.3](//github.com/coderaiser/cloudcmd/releases/tag/v19.8.3)**
|
|
1115
1117
|
- *2026.03.22*, **[v19.8.2](//github.com/coderaiser/cloudcmd/releases/tag/v19.8.2)**
|
|
1116
1118
|
- *2026.03.22*, **[v19.8.1](//github.com/coderaiser/cloudcmd/releases/tag/v19.8.1)**
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.8.
|
|
1
|
+
# Cloud Commander v19.8.5 [![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/dist/cloudcmd.common.js
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
(globalThis["webpackChunkcloudcmd"] = globalThis["webpackChunkcloudcmd"] || []).push([[267],{
|
|
2
2
|
|
|
3
|
+
/***/ 797
|
|
4
|
+
(__unused_webpack_module, exports) {
|
|
5
|
+
|
|
6
|
+
// Copyright 2014, 2015, 2016, 2017, 2018 Simon Lydell
|
|
7
|
+
// License: MIT. (See LICENSE.)
|
|
8
|
+
|
|
9
|
+
Object.defineProperty(exports, "__esModule", ({
|
|
10
|
+
value: true
|
|
11
|
+
}))
|
|
12
|
+
|
|
13
|
+
// This regex comes from regex.coffee, and is inserted here by generate-index.js
|
|
14
|
+
// (run `npm run build`).
|
|
15
|
+
exports["default"] = /((['"])(?:(?!\2|\\).|\\(?:\r\n|[\s\S]))*(\2)?|`(?:[^`\\$]|\\[\s\S]|\$(?!\{)|\$\{(?:[^{}]|\{[^}]*\}?)*\}?)*(`)?)|(\/\/.*)|(\/\*(?:[^*]|\*(?!\/))*(\*\/)?)|(\/(?!\*)(?:\[(?:(?![\]\\]).|\\.)*\]|(?![\/\]\\]).|\\.)+\/(?:(?!\s*(?:\b|[\u0080-\uFFFF$\\'"~({]|[+\-!](?!=)|\.?\d))|[gmiyus]{1,6}\b(?![\u0080-\uFFFF$\\]|\s*(?:[+\-*%&|^<>!=?({]|\/(?![\/*])))))|(0[xX][\da-fA-F]+|0[oO][0-7]+|0[bB][01]+|(?:\d*\.\d+|\d+\.?)(?:[eE][+-]?\d+)?)|((?!\d)(?:(?!\s)[$\w\u0080-\uFFFF]|\\u[\da-fA-F]{4}|\\u\{[\da-fA-F]+\})+)|(--|\+\+|&&|\|\||=>|\.{3}|(?:[+\-\/%&|^]|\*{1,2}|<{1,2}|>{1,3}|!=?|={1,2})=?|[?~.,:;[\](){}])|(\s+)|(^$|[\s\S])/g
|
|
16
|
+
|
|
17
|
+
exports.matchToToken = function(match) {
|
|
18
|
+
var token = {type: "invalid", value: match[0], closed: undefined}
|
|
19
|
+
if (match[ 1]) token.type = "string" , token.closed = !!(match[3] || match[4])
|
|
20
|
+
else if (match[ 5]) token.type = "comment"
|
|
21
|
+
else if (match[ 6]) token.type = "comment", token.closed = !!match[7]
|
|
22
|
+
else if (match[ 8]) token.type = "regex"
|
|
23
|
+
else if (match[ 9]) token.type = "number"
|
|
24
|
+
else if (match[10]) token.type = "name"
|
|
25
|
+
else if (match[11]) token.type = "punctuator"
|
|
26
|
+
else if (match[12]) token.type = "whitespace"
|
|
27
|
+
return token
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
/***/ },
|
|
32
|
+
|
|
3
33
|
/***/ 6735
|
|
4
34
|
(module) {
|
|
5
35
|
|
|
@@ -2566,36 +2596,6 @@ module.exports.stringify = (...args) => {
|
|
|
2566
2596
|
|
|
2567
2597
|
|
|
2568
2598
|
|
|
2569
|
-
/***/ },
|
|
2570
|
-
|
|
2571
|
-
/***/ 5879
|
|
2572
|
-
(__unused_webpack_module, exports) {
|
|
2573
|
-
|
|
2574
|
-
// Copyright 2014, 2015, 2016, 2017, 2018 Simon Lydell
|
|
2575
|
-
// License: MIT. (See LICENSE.)
|
|
2576
|
-
|
|
2577
|
-
Object.defineProperty(exports, "__esModule", ({
|
|
2578
|
-
value: true
|
|
2579
|
-
}))
|
|
2580
|
-
|
|
2581
|
-
// This regex comes from regex.coffee, and is inserted here by generate-index.js
|
|
2582
|
-
// (run `npm run build`).
|
|
2583
|
-
exports["default"] = /((['"])(?:(?!\2|\\).|\\(?:\r\n|[\s\S]))*(\2)?|`(?:[^`\\$]|\\[\s\S]|\$(?!\{)|\$\{(?:[^{}]|\{[^}]*\}?)*\}?)*(`)?)|(\/\/.*)|(\/\*(?:[^*]|\*(?!\/))*(\*\/)?)|(\/(?!\*)(?:\[(?:(?![\]\\]).|\\.)*\]|(?![\/\]\\]).|\\.)+\/(?:(?!\s*(?:\b|[\u0080-\uFFFF$\\'"~({]|[+\-!](?!=)|\.?\d))|[gmiyus]{1,6}\b(?![\u0080-\uFFFF$\\]|\s*(?:[+\-*%&|^<>!=?({]|\/(?![\/*])))))|(0[xX][\da-fA-F]+|0[oO][0-7]+|0[bB][01]+|(?:\d*\.\d+|\d+\.?)(?:[eE][+-]?\d+)?)|((?!\d)(?:(?!\s)[$\w\u0080-\uFFFF]|\\u[\da-fA-F]{4}|\\u\{[\da-fA-F]+\})+)|(--|\+\+|&&|\|\||=>|\.{3}|(?:[+\-\/%&|^]|\*{1,2}|<{1,2}|>{1,3}|!=?|={1,2})=?|[?~.,:;[\](){}])|(\s+)|(^$|[\s\S])/g
|
|
2584
|
-
|
|
2585
|
-
exports.matchToToken = function(match) {
|
|
2586
|
-
var token = {type: "invalid", value: match[0], closed: undefined}
|
|
2587
|
-
if (match[ 1]) token.type = "string" , token.closed = !!(match[3] || match[4])
|
|
2588
|
-
else if (match[ 5]) token.type = "comment"
|
|
2589
|
-
else if (match[ 6]) token.type = "comment", token.closed = !!match[7]
|
|
2590
|
-
else if (match[ 8]) token.type = "regex"
|
|
2591
|
-
else if (match[ 9]) token.type = "number"
|
|
2592
|
-
else if (match[10]) token.type = "name"
|
|
2593
|
-
else if (match[11]) token.type = "punctuator"
|
|
2594
|
-
else if (match[12]) token.type = "whitespace"
|
|
2595
|
-
return token
|
|
2596
|
-
}
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
2599
|
/***/ },
|
|
2600
2600
|
|
|
2601
2601
|
/***/ 1113
|
|
@@ -5359,7 +5359,7 @@ var __webpack_unused_export__;
|
|
|
5359
5359
|
__webpack_unused_export__ = ({ value: true });
|
|
5360
5360
|
|
|
5361
5361
|
var picocolors = __webpack_require__(8633);
|
|
5362
|
-
var jsTokens = __webpack_require__(
|
|
5362
|
+
var jsTokens = __webpack_require__(797);
|
|
5363
5363
|
var helperValidatorIdentifier = __webpack_require__(1000);
|
|
5364
5364
|
|
|
5365
5365
|
function isColorSupported() {
|
|
@@ -14551,7 +14551,7 @@ const isString = (a) => typeof a === 'string';
|
|
|
14551
14551
|
const constant = (a) => () => a;
|
|
14552
14552
|
const {keys} = Object;
|
|
14553
14553
|
|
|
14554
|
-
const rendy = (template, values, modifiers) => {
|
|
14554
|
+
const rendy = (template, values, modifiers = null) => {
|
|
14555
14555
|
check(template, values);
|
|
14556
14556
|
|
|
14557
14557
|
let result = template;
|