adminforth 1.1.99 → 1.1.100
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.
|
@@ -500,6 +500,7 @@ class CodeInjector {
|
|
|
500
500
|
}
|
|
501
501
|
bundleNow(_a) {
|
|
502
502
|
return __awaiter(this, arguments, void 0, function* ({ hotReload = false, verbose = false }) {
|
|
503
|
+
console.log(`AdminForth bundling ${hotReload ? ' and listening for changes (🔥)' : ' (no hot reload)'}`);
|
|
503
504
|
this.adminforth.runningHotReload = hotReload;
|
|
504
505
|
yield this.prepareSources({ verbose });
|
|
505
506
|
if (hotReload) {
|
package/modules/codeInjector.ts
CHANGED
|
@@ -576,6 +576,7 @@ async watchForReprepare({ verbose }) {
|
|
|
576
576
|
}
|
|
577
577
|
|
|
578
578
|
async bundleNow({hotReload = false, verbose = false}: {hotReload: boolean, verbose: boolean}) {
|
|
579
|
+
console.log(`AdminForth bundling ${hotReload ? ' and listening for changes (🔥)' : ' (no hot reload)'}`);
|
|
579
580
|
this.adminforth.runningHotReload = hotReload;
|
|
580
581
|
|
|
581
582
|
await this.prepareSources({ verbose });
|