browser-extension-manager 1.3.42 → 1.3.44
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/CHANGELOG.md +12 -0
- package/dist/commands/setup.js +3 -0
- package/dist/options.js +2 -3
- package/dist/page.js +2 -3
- package/dist/popup.js +2 -3
- package/dist/sidepanel.js +2 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
15
15
|
- `Security` in case of vulnerabilities.
|
|
16
16
|
|
|
17
17
|
---
|
|
18
|
+
## [1.3.43] - 2026-03-16
|
|
19
|
+
### Added
|
|
20
|
+
- Set `private: true` on consuming projects during setup to prevent accidental npm publishes
|
|
21
|
+
|
|
22
|
+
## [1.3.42] - 2026-03-15
|
|
23
|
+
### Changed
|
|
24
|
+
- Bumped `node-powertools` from ^2.3.2 to ^3.0.0
|
|
25
|
+
- Bumped `wonderful-fetch` from ^1.3.4 to ^2.0.4
|
|
26
|
+
- Bumped `web-manager` from ^4.1.27 to ^4.1.28
|
|
27
|
+
- Bumped `prepare-package` from ^1.2.6 to ^2.0.7
|
|
28
|
+
- Added `preparePackage.type: "copy"` config to package.json
|
|
29
|
+
|
|
18
30
|
## [1.3.40] - 2026-03-14
|
|
19
31
|
### Changed
|
|
20
32
|
- Migrated `app` references to `brand` namespace (`this.app` → `this.brand.id`, `options.app.id` → `options.brand.id`)
|
package/dist/commands/setup.js
CHANGED
|
@@ -177,6 +177,9 @@ function setupScripts() {
|
|
|
177
177
|
project.scripts[key] = package.projectScripts[key];
|
|
178
178
|
});
|
|
179
179
|
|
|
180
|
+
// Ensure the project is private (extensions should never be published to npm)
|
|
181
|
+
project.private = true;
|
|
182
|
+
|
|
180
183
|
// Save the project
|
|
181
184
|
jetpack.write(path.join(process.cwd(), 'package.json'), project);
|
|
182
185
|
}
|
package/dist/options.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Libraries
|
|
2
|
-
import
|
|
2
|
+
import webManager from 'web-manager';
|
|
3
3
|
import extension from './lib/extension.js';
|
|
4
4
|
import LoggerLite from './lib/logger-lite.js';
|
|
5
5
|
import { syncWithBackground, setupAuthBroadcastListener, setupSignOutListener, setupAuthEventListeners, openAuthPage as openAuthPageHelper } from './lib/auth-helpers.js';
|
|
@@ -14,7 +14,7 @@ class Manager {
|
|
|
14
14
|
this.extension = null;
|
|
15
15
|
this.messenger = null;
|
|
16
16
|
this.logger = null;
|
|
17
|
-
this.webManager =
|
|
17
|
+
this.webManager = webManager;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
async initialize() {
|
|
@@ -25,7 +25,6 @@ class Manager {
|
|
|
25
25
|
this.extension = extension;
|
|
26
26
|
this.messenger = null;
|
|
27
27
|
this.logger = new LoggerLite('options');
|
|
28
|
-
this.webManager = new WebManager();
|
|
29
28
|
|
|
30
29
|
// Initialize
|
|
31
30
|
await this.webManager.initialize(configuration);
|
package/dist/page.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Libraries
|
|
2
|
-
import
|
|
2
|
+
import webManager from 'web-manager';
|
|
3
3
|
import extension from './lib/extension.js';
|
|
4
4
|
import LoggerLite from './lib/logger-lite.js';
|
|
5
5
|
import { syncWithBackground, setupAuthBroadcastListener, setupSignOutListener, setupAuthEventListeners, openAuthPage as openAuthPageHelper } from './lib/auth-helpers.js';
|
|
@@ -14,7 +14,7 @@ class Manager {
|
|
|
14
14
|
this.extension = null;
|
|
15
15
|
this.messenger = null;
|
|
16
16
|
this.logger = null;
|
|
17
|
-
this.webManager =
|
|
17
|
+
this.webManager = webManager;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
async initialize() {
|
|
@@ -25,7 +25,6 @@ class Manager {
|
|
|
25
25
|
this.extension = extension;
|
|
26
26
|
this.messenger = null;
|
|
27
27
|
this.logger = new LoggerLite('page');
|
|
28
|
-
this.webManager = new WebManager();
|
|
29
28
|
|
|
30
29
|
// Initialize
|
|
31
30
|
await this.webManager.initialize(configuration);
|
package/dist/popup.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Libraries
|
|
2
|
-
import
|
|
2
|
+
import webManager from 'web-manager';
|
|
3
3
|
import extension from './lib/extension.js';
|
|
4
4
|
import LoggerLite from './lib/logger-lite.js';
|
|
5
5
|
import { syncWithBackground, setupAuthBroadcastListener, setupSignOutListener, setupAuthEventListeners, openAuthPage as openAuthPageHelper } from './lib/auth-helpers.js';
|
|
@@ -14,7 +14,7 @@ class Manager {
|
|
|
14
14
|
this.extension = null;
|
|
15
15
|
this.messenger = null;
|
|
16
16
|
this.logger = null;
|
|
17
|
-
this.webManager =
|
|
17
|
+
this.webManager = webManager;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
async initialize() {
|
|
@@ -25,7 +25,6 @@ class Manager {
|
|
|
25
25
|
this.extension = extension;
|
|
26
26
|
this.messenger = null;
|
|
27
27
|
this.logger = new LoggerLite('popup');
|
|
28
|
-
this.webManager = new WebManager();
|
|
29
28
|
|
|
30
29
|
// Initialize
|
|
31
30
|
await this.webManager.initialize(configuration);
|
package/dist/sidepanel.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Libraries
|
|
2
|
-
import
|
|
2
|
+
import webManager from 'web-manager';
|
|
3
3
|
import extension from './lib/extension.js';
|
|
4
4
|
import LoggerLite from './lib/logger-lite.js';
|
|
5
5
|
import { syncWithBackground, setupAuthBroadcastListener, setupSignOutListener, setupAuthEventListeners, openAuthPage as openAuthPageHelper } from './lib/auth-helpers.js';
|
|
@@ -14,7 +14,7 @@ class Manager {
|
|
|
14
14
|
this.extension = null;
|
|
15
15
|
this.messenger = null;
|
|
16
16
|
this.logger = null;
|
|
17
|
-
this.webManager =
|
|
17
|
+
this.webManager = webManager;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
async initialize() {
|
|
@@ -25,7 +25,6 @@ class Manager {
|
|
|
25
25
|
this.extension = extension;
|
|
26
26
|
this.messenger = null;
|
|
27
27
|
this.logger = new LoggerLite('sidepanel');
|
|
28
|
-
this.webManager = new WebManager();
|
|
29
28
|
|
|
30
29
|
// Initialize
|
|
31
30
|
await this.webManager.initialize(configuration);
|