xshell 1.0.145 → 1.0.147
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.js +5 -2
- package/package.json +1 -1
package/builder.js
CHANGED
|
@@ -93,7 +93,10 @@ const dependencies = {
|
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
echarts: {
|
|
96
|
-
productions: ['echarts/dist/echarts.js']
|
|
96
|
+
productions: ['echarts/dist/echarts.js'],
|
|
97
|
+
maps: {
|
|
98
|
+
devs: ['echarts/dist/echarts.js.map']
|
|
99
|
+
}
|
|
97
100
|
}
|
|
98
101
|
};
|
|
99
102
|
export class Bundler {
|
|
@@ -523,7 +526,7 @@ export class Bundler {
|
|
|
523
526
|
}
|
|
524
527
|
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 } } = {}) {
|
|
525
528
|
if (print.info)
|
|
526
|
-
console.log(
|
|
529
|
+
console.log(`复制 ${this.name} 项目文件及依赖到输出目录 ${this.fpd_out}`);
|
|
527
530
|
if (dependencies)
|
|
528
531
|
await fmkdir(`${fpd_out}vendors/`, { print: false });
|
|
529
532
|
async function fcopy_asset(asset) {
|