xshell 1.0.137 → 1.0.139
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 +2 -2
- package/package.json +1 -1
package/builder.js
CHANGED
|
@@ -446,7 +446,7 @@ export class Bundler {
|
|
|
446
446
|
await Promise.all([
|
|
447
447
|
this.build(print),
|
|
448
448
|
this.copy_files({ print: { info: print, files: false } }),
|
|
449
|
-
this.target === 'web' && this.build_htmls({ info: print, files: false })
|
|
449
|
+
this.target === 'web' && this.htmls && this.build_htmls({ info: print, files: false })
|
|
450
450
|
]);
|
|
451
451
|
}
|
|
452
452
|
async build_all_and_close(print = true) {
|
|
@@ -456,7 +456,7 @@ export class Bundler {
|
|
|
456
456
|
await this.close();
|
|
457
457
|
})(),
|
|
458
458
|
this.copy_files({ print: { info: print, files: false } }),
|
|
459
|
-
this.target === 'web' && this.build_htmls({ info: print, files: false })
|
|
459
|
+
this.target === 'web' && this.htmls && this.build_htmls({ info: print, files: false })
|
|
460
460
|
]);
|
|
461
461
|
}
|
|
462
462
|
async build_htmls(print = { info: true, files: false }) {
|