xshell 1.3.72 → 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 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.72",
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": "https://pkg.pr.new/webpack@7917dd1",
89
+ "webpack": "^5.107.2",
90
90
  "webpack-bundle-analyzer": "^5.3.0",
91
91
  "ws": "^8.21.0"
92
92
  },
@@ -99,7 +99,7 @@
99
99
  "@types/koa": "^3.0.3",
100
100
  "@types/koa-compress": "^4.0.7",
101
101
  "@types/mime-types": "^3.0.1",
102
- "@types/node": "^25.9.2",
102
+ "@types/node": "^25.9.3",
103
103
  "@types/react": "^19.2.17",
104
104
  "@types/tough-cookie": "^4.0.5",
105
105
  "@types/vscode": "^1.120.0",