@kevisual/cli 0.0.77 → 0.0.78
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/assistant-server.js +369 -161
- package/dist/assistant.js +6005 -136
- package/dist/envision.js +8 -10
- package/package.json +1 -1
package/dist/envision.js
CHANGED
|
@@ -24189,8 +24189,8 @@ var require_lodash = __commonJS((exports, module) => {
|
|
|
24189
24189
|
return !!length && (typeof value == "number" || reIsUint.test(value)) && (value > -1 && value % 1 == 0 && value < length);
|
|
24190
24190
|
}
|
|
24191
24191
|
function isPrototype(value) {
|
|
24192
|
-
var Ctor = value && value.constructor,
|
|
24193
|
-
return value ===
|
|
24192
|
+
var Ctor = value && value.constructor, proto = typeof Ctor == "function" && Ctor.prototype || objectProto;
|
|
24193
|
+
return value === proto;
|
|
24194
24194
|
}
|
|
24195
24195
|
function includes(collection, value, fromIndex, guard) {
|
|
24196
24196
|
collection = isArrayLike(collection) ? collection : values(collection);
|
|
@@ -24394,11 +24394,11 @@ var require_lodash5 = __commonJS((exports, module) => {
|
|
|
24394
24394
|
if (!isObjectLike(value) || objectToString.call(value) != objectTag || isHostObject(value)) {
|
|
24395
24395
|
return false;
|
|
24396
24396
|
}
|
|
24397
|
-
var
|
|
24398
|
-
if (
|
|
24397
|
+
var proto = getPrototype(value);
|
|
24398
|
+
if (proto === null) {
|
|
24399
24399
|
return true;
|
|
24400
24400
|
}
|
|
24401
|
-
var Ctor = hasOwnProperty.call(
|
|
24401
|
+
var Ctor = hasOwnProperty.call(proto, "constructor") && proto.constructor;
|
|
24402
24402
|
return typeof Ctor == "function" && Ctor instanceof Ctor && funcToString.call(Ctor) == objectCtorString;
|
|
24403
24403
|
}
|
|
24404
24404
|
module.exports = isPlainObject2;
|
|
@@ -40664,8 +40664,8 @@ InitEnv.init();
|
|
|
40664
40664
|
var version = useContextKey("version", () => {
|
|
40665
40665
|
let version2 = "0.0.64";
|
|
40666
40666
|
try {
|
|
40667
|
-
if ("0.0.
|
|
40668
|
-
version2 = "0.0.
|
|
40667
|
+
if ("0.0.78")
|
|
40668
|
+
version2 = "0.0.78";
|
|
40669
40669
|
} catch (e) {}
|
|
40670
40670
|
return version2;
|
|
40671
40671
|
});
|
|
@@ -43699,6 +43699,7 @@ var dist_default12 = inquirer;
|
|
|
43699
43699
|
|
|
43700
43700
|
// src/module/login/login-by-web.ts
|
|
43701
43701
|
var import_md5 = __toESM(require_md5(), 1);
|
|
43702
|
+
var import_jsonwebtoken = __toESM(require_jsonwebtoken(), 1);
|
|
43702
43703
|
|
|
43703
43704
|
// node_modules/.pnpm/@kevisual+query@0.0.33/node_modules/@kevisual/query/dist/query.js
|
|
43704
43705
|
var isTextForContentType = (contentType) => {
|
|
@@ -45238,9 +45239,6 @@ var source_default = chalk;
|
|
|
45238
45239
|
// src/module/chalk.ts
|
|
45239
45240
|
var chalk2 = new Chalk({ level: 3 });
|
|
45240
45241
|
|
|
45241
|
-
// src/module/login/login-by-web.ts
|
|
45242
|
-
var import_jsonwebtoken = __toESM(require_jsonwebtoken(), 1);
|
|
45243
|
-
|
|
45244
45242
|
// node_modules/.pnpm/@kevisual+load@0.0.6/node_modules/@kevisual/load/dist/load.js
|
|
45245
45243
|
function getDefaultExportFromCjs2(x) {
|
|
45246
45244
|
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
|