xshell 1.3.74 → 1.3.76
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/package.json +3 -3
- package/prototype.common.d.ts +3 -3
- package/utils.d.ts +4 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xshell",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.76",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"bin": {
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"emoji-regex": "^10.6.0",
|
|
66
66
|
"eslint": "^10.4.1",
|
|
67
67
|
"eslint-plugin-react": "^7.37.5",
|
|
68
|
-
"https-proxy-agent": "
|
|
68
|
+
"https-proxy-agent": "9.0.0",
|
|
69
69
|
"i18next": "25.8.1",
|
|
70
70
|
"i18next-scanner": "^4.6.0",
|
|
71
71
|
"koa": "^3.2.1",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"react": "^19.2.7",
|
|
77
77
|
"react-i18next": "^17.0.8",
|
|
78
78
|
"resolve-path": "^1.4.0",
|
|
79
|
-
"sass": "^1.
|
|
79
|
+
"sass": "^1.101.0",
|
|
80
80
|
"sass-loader": "^17.0.0",
|
|
81
81
|
"source-map-loader": "^5.0.0",
|
|
82
82
|
"strip-ansi": "^7.2.0",
|
package/prototype.common.d.ts
CHANGED
|
@@ -266,9 +266,9 @@ export declare const brackets: {
|
|
|
266
266
|
readonly square: readonly ['[', ']'];
|
|
267
267
|
readonly curly: readonly ['{', '}'];
|
|
268
268
|
readonly pointy: readonly ['<', '>'];
|
|
269
|
-
readonly corner: readonly ['
|
|
270
|
-
readonly fat: readonly ['
|
|
271
|
-
readonly tortoise_shell: readonly ['
|
|
269
|
+
readonly corner: readonly ['「', '」'];
|
|
270
|
+
readonly fat: readonly ['【', '】'];
|
|
271
|
+
readonly tortoise_shell: readonly ['〔', '〕'];
|
|
272
272
|
};
|
|
273
273
|
export declare function to_json(obj: any, replacer?: any): string;
|
|
274
274
|
export declare function to_json_safely(obj: any, replacer?: any): string;
|
package/utils.d.ts
CHANGED
|
@@ -22,16 +22,14 @@ export declare function inspect(obj: any, options?: util.InspectOptions & {
|
|
|
22
22
|
limit?: number;
|
|
23
23
|
omit?: string[];
|
|
24
24
|
}): string;
|
|
25
|
-
export interface inspect {
|
|
26
|
-
custom: typeof util.inspect.custom;
|
|
27
|
-
defaultOptions: typeof util.inspect.defaultOptions;
|
|
28
|
-
}
|
|
29
25
|
export declare namespace inspect {
|
|
30
26
|
var custom: symbol;
|
|
31
|
-
}
|
|
32
|
-
export declare namespace inspect {
|
|
33
27
|
var defaultOptions: util.InspectOptions;
|
|
34
28
|
}
|
|
29
|
+
export interface inspect {
|
|
30
|
+
custom: typeof util.inspect.custom;
|
|
31
|
+
defaultOptions: typeof util.inspect.defaultOptions;
|
|
32
|
+
}
|
|
35
33
|
/** 根据 enabled 选项返回有 / 无颜色的字符串 (str) */
|
|
36
34
|
export declare function colored(str: string, color: string, enabled?: boolean): any;
|
|
37
35
|
/** 消费一个可读流 */
|