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) {
@@ -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 });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "1.1.99",
3
+ "version": "1.1.100",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",