browser-extension-manager 1.1.2 → 1.1.4

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.
@@ -2,4 +2,8 @@
2
2
  // Options Component Styles
3
3
  // ============================================
4
4
 
5
- // No styles defined - add your options-specific styles here
5
+ // Page size
6
+ body {
7
+ min-width: 400px;
8
+ max-width: 100%;
9
+ }
@@ -2,4 +2,8 @@
2
2
  // Popup Component Styles
3
3
  // ============================================
4
4
 
5
- // No styles defined - add your popup-specific styles here
5
+ // Page size
6
+ body {
7
+ min-width: 400px;
8
+ max-width: 100%;
9
+ }
@@ -8,6 +8,9 @@ import Manager from 'browser-extension-manager/background';
8
8
  // Create instance
9
9
  const manager = new Manager();
10
10
 
11
+ // Init service worker
12
+ const serviceWorker = self;
13
+
11
14
  // Initialize
12
15
  manager.initialize()
13
16
  .then(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browser-extension-manager",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "description": "Browser Extension Manager dependency manager",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
@@ -11,7 +11,8 @@
11
11
  "./popup": "./dist/popup.js",
12
12
  "./sidepanel": "./dist/sidepanel.js",
13
13
  "./options": "./dist/options.js",
14
- "./page": "./dist/page.js"
14
+ "./page": "./dist/page.js",
15
+ "./lib/affiliatizer": "./dist/lib/affiliatizer.js"
15
16
  },
16
17
  "scripts": {
17
18
  "start": "npm run prepare:watch",