cloudcmd 19.8.12 → 19.8.14
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 +31 -31
- 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 +11 -11
- package/dist-dev/sw.js +1 -1
- package/package.json +1 -1
package/ChangeLog
CHANGED
package/HELP.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.8.
|
|
1
|
+
# Cloud Commander v19.8.14
|
|
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.14](//github.com/coderaiser/cloudcmd/releases/tag/v19.8.14)**
|
|
1115
|
+
- *2026.03.23*, **[v19.8.13](//github.com/coderaiser/cloudcmd/releases/tag/v19.8.13)**
|
|
1114
1116
|
- *2026.03.23*, **[v19.8.12](//github.com/coderaiser/cloudcmd/releases/tag/v19.8.12)**
|
|
1115
1117
|
- *2026.03.23*, **[v19.8.11](//github.com/coderaiser/cloudcmd/releases/tag/v19.8.11)**
|
|
1116
1118
|
- *2026.03.23*, **[v19.8.10](//github.com/coderaiser/cloudcmd/releases/tag/v19.8.10)**
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Cloud Commander v19.8.
|
|
1
|
+
# Cloud Commander v19.8.14 [![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,35 +1,5 @@
|
|
|
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
|
-
|
|
33
3
|
/***/ 6735
|
|
34
4
|
(module) {
|
|
35
5
|
|
|
@@ -2596,6 +2566,36 @@ module.exports.stringify = (...args) => {
|
|
|
2596
2566
|
|
|
2597
2567
|
|
|
2598
2568
|
|
|
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__(5879);
|
|
5363
5363
|
var helperValidatorIdentifier = __webpack_require__(1000);
|
|
5364
5364
|
|
|
5365
5365
|
function isColorSupported() {
|