xshell 1.3.73 → 1.3.74
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/builder.d.ts +1 -1
- package/builder.js +0 -8
- package/package.json +2 -2
package/builder.d.ts
CHANGED
|
@@ -166,7 +166,7 @@ export declare class Bundler {
|
|
|
166
166
|
- plugins?: 可选传入的额外的 webpack 插件
|
|
167
167
|
- license?: 使用 license-webpack-plugin 构建 ThirdPartyNotice.txt
|
|
168
168
|
- polyfill_node_sea?: 避免依赖 node:sea 模块以兼容旧版本 node.js */
|
|
169
|
-
constructor(name: string, target: 'web' | 'nodejs', fpd_root: string, fpd_out: string, fpdt_cache: string, entry: Record<string, string>, options?: BundlerOptions);
|
|
169
|
+
constructor(name: string, target: 'web' | 'nodejs', fpd_root: string, fpd_out: string, fpdt_cache: string | undefined, entry: Record<string, string>, options?: BundlerOptions);
|
|
170
170
|
build(print?: boolean): Promise<void>;
|
|
171
171
|
close(): Promise<void>;
|
|
172
172
|
build_all(print?: boolean): Promise<void>;
|
package/builder.js
CHANGED
|
@@ -445,14 +445,6 @@ export class Bundler {
|
|
|
445
445
|
optimization: {
|
|
446
446
|
minimize: false
|
|
447
447
|
},
|
|
448
|
-
cache: {
|
|
449
|
-
type: 'filesystem',
|
|
450
|
-
compression: false,
|
|
451
|
-
cacheDirectory: this.fpdt_cache,
|
|
452
|
-
...this.cache_version ? {
|
|
453
|
-
version: this.cache_version
|
|
454
|
-
} : {}
|
|
455
|
-
},
|
|
456
448
|
ignoreWarnings: [
|
|
457
449
|
...this.source_map ? [/Failed to parse source map/] : [],
|
|
458
450
|
...this.license ? [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xshell",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.74",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"bin": {
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"tslib": "^2.8.1",
|
|
87
87
|
"typescript": "^6.0.3",
|
|
88
88
|
"undici": "^8.4.1",
|
|
89
|
-
"webpack": "5.
|
|
89
|
+
"webpack": "^5.107.2",
|
|
90
90
|
"webpack-bundle-analyzer": "^5.3.0",
|
|
91
91
|
"ws": "^8.21.0"
|
|
92
92
|
},
|