xshell 1.0.146 → 1.0.148
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 +1 -2
- package/package.json +1 -1
package/builder.js
CHANGED
|
@@ -210,7 +210,6 @@ export class Bundler {
|
|
|
210
210
|
'@ant-design/icons': 'icons',
|
|
211
211
|
'@ant-design/plots': 'Plots',
|
|
212
212
|
echarts: 'echarts',
|
|
213
|
-
dolphindb: 'dolphindb',
|
|
214
213
|
...externals
|
|
215
214
|
}),
|
|
216
215
|
resolve: {
|
|
@@ -526,7 +525,7 @@ export class Bundler {
|
|
|
526
525
|
}
|
|
527
526
|
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 } } = {}) {
|
|
528
527
|
if (print.info)
|
|
529
|
-
console.log(
|
|
528
|
+
console.log(`复制 ${this.name} 项目文件及依赖到输出目录 ${this.fpd_out}`);
|
|
530
529
|
if (dependencies)
|
|
531
530
|
await fmkdir(`${fpd_out}vendors/`, { print: false });
|
|
532
531
|
async function fcopy_asset(asset) {
|