@squidcloud/cli 1.0.433 → 1.0.434
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/dist/index.js +34 -64
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -414,7 +414,7 @@ function cliui(opts, _mixin) {
|
|
|
414
414
|
|
|
415
415
|
// Bootstrap cliui with CommonJS dependencies:
|
|
416
416
|
const stringWidth = __webpack_require__(4813);
|
|
417
|
-
const stripAnsi = __webpack_require__(
|
|
417
|
+
const stripAnsi = __webpack_require__(8395);
|
|
418
418
|
const wrap = __webpack_require__(5365);
|
|
419
419
|
function ui(opts) {
|
|
420
420
|
return cliui(opts, {
|
|
@@ -14198,24 +14198,6 @@ module.exports = class DescriptionFilePlugin {
|
|
|
14198
14198
|
};
|
|
14199
14199
|
|
|
14200
14200
|
|
|
14201
|
-
/***/ },
|
|
14202
|
-
|
|
14203
|
-
/***/ 4198
|
|
14204
|
-
(module) {
|
|
14205
|
-
|
|
14206
|
-
"use strict";
|
|
14207
|
-
|
|
14208
|
-
|
|
14209
|
-
module.exports = ({onlyFirst = false} = {}) => {
|
|
14210
|
-
const pattern = [
|
|
14211
|
-
'[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)',
|
|
14212
|
-
'(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))'
|
|
14213
|
-
].join('|');
|
|
14214
|
-
|
|
14215
|
-
return new RegExp(pattern, onlyFirst ? undefined : 'g');
|
|
14216
|
-
};
|
|
14217
|
-
|
|
14218
|
-
|
|
14219
14201
|
/***/ },
|
|
14220
14202
|
|
|
14221
14203
|
/***/ 4199
|
|
@@ -14896,18 +14878,6 @@ module.exports = function hasSymbols() {
|
|
|
14896
14878
|
};
|
|
14897
14879
|
|
|
14898
14880
|
|
|
14899
|
-
/***/ },
|
|
14900
|
-
|
|
14901
|
-
/***/ 4383
|
|
14902
|
-
(module, __unused_webpack_exports, __webpack_require__) {
|
|
14903
|
-
|
|
14904
|
-
"use strict";
|
|
14905
|
-
|
|
14906
|
-
const ansiRegex = __webpack_require__(4448);
|
|
14907
|
-
|
|
14908
|
-
module.exports = string => typeof string === 'string' ? string.replace(ansiRegex(), '') : string;
|
|
14909
|
-
|
|
14910
|
-
|
|
14911
14881
|
/***/ },
|
|
14912
14882
|
|
|
14913
14883
|
/***/ 4434
|
|
@@ -14916,24 +14886,6 @@ module.exports = string => typeof string === 'string' ? string.replace(ansiRegex
|
|
|
14916
14886
|
"use strict";
|
|
14917
14887
|
module.exports = require("events");
|
|
14918
14888
|
|
|
14919
|
-
/***/ },
|
|
14920
|
-
|
|
14921
|
-
/***/ 4448
|
|
14922
|
-
(module) {
|
|
14923
|
-
|
|
14924
|
-
"use strict";
|
|
14925
|
-
|
|
14926
|
-
|
|
14927
|
-
module.exports = ({onlyFirst = false} = {}) => {
|
|
14928
|
-
const pattern = [
|
|
14929
|
-
'[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)',
|
|
14930
|
-
'(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))'
|
|
14931
|
-
].join('|');
|
|
14932
|
-
|
|
14933
|
-
return new RegExp(pattern, onlyFirst ? undefined : 'g');
|
|
14934
|
-
};
|
|
14935
|
-
|
|
14936
|
-
|
|
14937
14889
|
/***/ },
|
|
14938
14890
|
|
|
14939
14891
|
/***/ 4464
|
|
@@ -16550,6 +16502,24 @@ module.exports = class ImportsFieldPlugin {
|
|
|
16550
16502
|
module.exports = Math.min;
|
|
16551
16503
|
|
|
16552
16504
|
|
|
16505
|
+
/***/ },
|
|
16506
|
+
|
|
16507
|
+
/***/ 4764
|
|
16508
|
+
(module) {
|
|
16509
|
+
|
|
16510
|
+
"use strict";
|
|
16511
|
+
|
|
16512
|
+
|
|
16513
|
+
module.exports = ({onlyFirst = false} = {}) => {
|
|
16514
|
+
const pattern = [
|
|
16515
|
+
'[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)',
|
|
16516
|
+
'(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))'
|
|
16517
|
+
].join('|');
|
|
16518
|
+
|
|
16519
|
+
return new RegExp(pattern, onlyFirst ? undefined : 'g');
|
|
16520
|
+
};
|
|
16521
|
+
|
|
16522
|
+
|
|
16553
16523
|
/***/ },
|
|
16554
16524
|
|
|
16555
16525
|
/***/ 4813
|
|
@@ -16557,7 +16527,7 @@ module.exports = Math.min;
|
|
|
16557
16527
|
|
|
16558
16528
|
"use strict";
|
|
16559
16529
|
|
|
16560
|
-
const stripAnsi = __webpack_require__(
|
|
16530
|
+
const stripAnsi = __webpack_require__(8395);
|
|
16561
16531
|
const isFullwidthCodePoint = __webpack_require__(7396);
|
|
16562
16532
|
const emojiRegex = __webpack_require__(5895);
|
|
16563
16533
|
|
|
@@ -18569,7 +18539,7 @@ module.exports = (obj, opts) => {
|
|
|
18569
18539
|
"use strict";
|
|
18570
18540
|
|
|
18571
18541
|
const stringWidth = __webpack_require__(4813);
|
|
18572
|
-
const stripAnsi = __webpack_require__(
|
|
18542
|
+
const stripAnsi = __webpack_require__(8395);
|
|
18573
18543
|
const ansiStyles = __webpack_require__(8341);
|
|
18574
18544
|
|
|
18575
18545
|
const ESCAPES = new Set([
|
|
@@ -22287,18 +22257,6 @@ AsyncParallelBailHook.prototype = null;
|
|
|
22287
22257
|
module.exports = AsyncParallelBailHook;
|
|
22288
22258
|
|
|
22289
22259
|
|
|
22290
|
-
/***/ },
|
|
22291
|
-
|
|
22292
|
-
/***/ 6077
|
|
22293
|
-
(module, __unused_webpack_exports, __webpack_require__) {
|
|
22294
|
-
|
|
22295
|
-
"use strict";
|
|
22296
|
-
|
|
22297
|
-
const ansiRegex = __webpack_require__(4198);
|
|
22298
|
-
|
|
22299
|
-
module.exports = string => typeof string === 'string' ? string.replace(ansiRegex(), '') : string;
|
|
22300
|
-
|
|
22301
|
-
|
|
22302
22260
|
/***/ },
|
|
22303
22261
|
|
|
22304
22262
|
/***/ 6152
|
|
@@ -30703,7 +30661,7 @@ function exitWithError(...messages) {
|
|
|
30703
30661
|
(module) {
|
|
30704
30662
|
|
|
30705
30663
|
"use strict";
|
|
30706
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@squidcloud/cli","version":"1.0.
|
|
30664
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@squidcloud/cli","version":"1.0.434","description":"The Squid CLI","main":"dist/index.js","scripts":{"start":"node dist/index.js","start-ts":"ts-node -r tsconfig-paths/register src/index.ts","prebuild":"rimraf dist","build":"webpack --mode=production","build:dev":"webpack --mode=development","lint":"eslint","link":"npm run build && chmod 755 dist/index.js && npm link","watch":"webpack --watch","deploy":"npm run build && npm pack --silent | xargs -I {} mv {} package.tgz && npm install -g package.tgz && rm -rf package.tgz","publish:public":"npm run build && npm publish --access public"},"files":["dist/**/*"],"bin":{"squid":"dist/index.js"},"keywords":[],"author":"","license":"ISC","engines":{"node":">=18.0.0"},"dependencies":{"@squidcloud/local-backend":"^1.0.434","adm-zip":"^0.5.16","copy-webpack-plugin":"^12.0.2","decompress":"^4.2.1","nodemon":"^3.1.9","terser-webpack-plugin":"^5.3.10","ts-loader":"^9.5.1","ts-node":"^10.9.2","tsconfig-paths":"^4.2.0","tsconfig-paths-webpack-plugin":"^4.1.0","webpack":"^5.101.3","zip-webpack-plugin":"^4.0.1"},"devDependencies":{"@types/adm-zip":"^0.5.7","@types/decompress":"^4.2.7","@types/node":"^20.19.9","terminal-link":"^3.0.0"}}');
|
|
30707
30665
|
|
|
30708
30666
|
/***/ },
|
|
30709
30667
|
|
|
@@ -30877,6 +30835,18 @@ Object.defineProperty(module, 'exports', {
|
|
|
30877
30835
|
});
|
|
30878
30836
|
|
|
30879
30837
|
|
|
30838
|
+
/***/ },
|
|
30839
|
+
|
|
30840
|
+
/***/ 8395
|
|
30841
|
+
(module, __unused_webpack_exports, __webpack_require__) {
|
|
30842
|
+
|
|
30843
|
+
"use strict";
|
|
30844
|
+
|
|
30845
|
+
const ansiRegex = __webpack_require__(4764);
|
|
30846
|
+
|
|
30847
|
+
module.exports = string => typeof string === 'string' ? string.replace(ansiRegex(), '') : string;
|
|
30848
|
+
|
|
30849
|
+
|
|
30880
30850
|
/***/ },
|
|
30881
30851
|
|
|
30882
30852
|
/***/ 8398
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squidcloud/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.434",
|
|
4
4
|
"description": "The Squid CLI",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"node": ">=18.0.0"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@squidcloud/local-backend": "^1.0.
|
|
31
|
+
"@squidcloud/local-backend": "^1.0.434",
|
|
32
32
|
"adm-zip": "^0.5.16",
|
|
33
33
|
"copy-webpack-plugin": "^12.0.2",
|
|
34
34
|
"decompress": "^4.2.1",
|