electron-injector 1.1.0 → 1.1.1

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/dist/index.cjs CHANGED
@@ -342,6 +342,7 @@ var Application = class _Application {
342
342
  } else {
343
343
  import_electron.ipcMain.on(path, handlerCallback);
344
344
  }
345
+ DEV_LOGGER(`[Electron Injector] Route ${path} has initialized (${handlerMetadata.type === "invoke" ? "invoke" : "send"})`);
345
346
  }
346
347
  }
347
348
  }
package/dist/index.js CHANGED
@@ -289,6 +289,7 @@ var Application = class _Application {
289
289
  } else {
290
290
  ipcMain.on(path, handlerCallback);
291
291
  }
292
+ DEV_LOGGER(`[Electron Injector] Route ${path} has initialized (${handlerMetadata.type === "invoke" ? "invoke" : "send"})`);
292
293
  }
293
294
  }
294
295
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "electron-injector",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Biblioteca para el desarrollo de aplicaciones con electron que proporciona una arquitectura robusta con inyección e inversion de dependencias.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",