browser-extension-manager 1.2.14 → 1.3.0
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 +14 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,20 @@ 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.0] - 2025-12-16
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- Multi-target builds for Chromium and Firefox with automatic manifest adjustments
|
|
22
|
+
- Chromium build uses `background.service_worker`, Firefox build uses `background.scripts`
|
|
23
|
+
- Edge loading instructions in BUILD_INSTRUCTIONS.md
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
- Packaged output structure changed from `packaged/raw/` to `packaged/{chromium,firefox}/raw/`
|
|
27
|
+
- Extension zip moved from `packaged/extension.zip` to `packaged/{chromium,firefox}/extension.zip`
|
|
28
|
+
- `package.js` now creates separate builds for each browser target
|
|
29
|
+
- `publish.js` uses target-specific paths (chromium zip for Chrome/Edge, firefox raw for Firefox)
|
|
30
|
+
- `audit.js` audits chromium build (code is identical between targets)
|
|
31
|
+
|
|
18
32
|
## [1.1.13] - 2025-11-26
|
|
19
33
|
### Added
|
|
20
34
|
- Default `.env` file with publish credential templates for all stores
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browser-extension-manager",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Browser Extension Manager dependency manager",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"npm-api": "^1.0.1",
|
|
88
88
|
"sass": "^1.97.0",
|
|
89
89
|
"through2": "^4.0.2",
|
|
90
|
-
"web-manager": "^4.0
|
|
90
|
+
"web-manager": "^4.1.0",
|
|
91
91
|
"webpack": "^5.104.0",
|
|
92
92
|
"wonderful-fetch": "^1.3.4",
|
|
93
93
|
"wonderful-version": "^1.3.2",
|