browser-extension-manager 1.2.2 → 1.2.3

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.
Files changed (2) hide show
  1. package/dist/content.js +2 -1
  2. package/package.json +1 -1
package/dist/content.js CHANGED
@@ -1,6 +1,7 @@
1
1
  // Libraries
2
2
  import extension from './lib/extension.js';
3
3
  import LoggerLite from './lib/logger-lite.js';
4
+ import Affiliatizer from './lib/affiliatizer.js';
4
5
 
5
6
  // Class
6
7
  class Manager {
@@ -17,7 +18,7 @@ class Manager {
17
18
  this.extension = extension;
18
19
  this.messenger = null;
19
20
  this.logger = new LoggerLite('content');
20
- this.affiliatizer = (await import('./lib/affiliatizer.js')).default.initialize(this);
21
+ this.affiliatizer = Affiliatizer.initialize(this);
21
22
 
22
23
  // Log
23
24
  this.logger.log('Initialized!', this);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browser-extension-manager",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "Browser Extension Manager dependency manager",
5
5
  "main": "dist/index.js",
6
6
  "exports": {