xshell 1.0.150 → 1.0.152

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
@@ -66,7 +66,7 @@ export interface BundlerOptions {
66
66
  assets_stats?: boolean;
67
67
  globals?: Record<string, string>;
68
68
  resolve_alias?: Record<string, string>;
69
- resolve_fallback?: Record<string, string>;
69
+ resolve_fallback?: Record<string, any>;
70
70
  analyzer?: boolean;
71
71
  dts?: boolean;
72
72
  cache_version?: string;
package/builder.js CHANGED
@@ -527,7 +527,7 @@ export class Bundler {
527
527
  }
528
528
  async copy_files({ dependencies = this.dependencies, production = this.production, assets = this.assets, fpd_root = this.fpd_root, fpd_out = this.fpd_out, print = { info: true, files: false } } = {}) {
529
529
  if (print.info)
530
- console.log(`复制 ${this.name} 项目文件及依赖 ${this.fpd_out}`);
530
+ console.log(`复制 ${this.name} 项目文件及依赖 -> ${this.fpd_out}`);
531
531
  if (dependencies)
532
532
  await fmkdir(`${fpd_out}vendors/`, { print: false });
533
533
  async function fcopy_asset(asset) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xshell",
3
- "version": "1.0.150",
3
+ "version": "1.0.152",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "bin": {