browser-extension-manager 1.3.40 → 1.3.42
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 +5 -0
- package/package.json +8 -7
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,11 @@ 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.40] - 2026-03-14
|
|
19
|
+
### Changed
|
|
20
|
+
- Migrated `app` references to `brand` namespace (`this.app` → `this.brand.id`, `options.app.id` → `options.brand.id`)
|
|
21
|
+
- Nested brand image properties under `brand.images.*` (`brandmark`, `wordmark`, `combomark`)
|
|
22
|
+
|
|
18
23
|
## [1.3.17] - 2025-12-23
|
|
19
24
|
### Changed
|
|
20
25
|
- Auth system now uses messaging instead of `chrome.storage` for cross-context sync
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browser-extension-manager",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.42",
|
|
4
4
|
"description": "Browser Extension Manager dependency manager",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -35,7 +35,8 @@
|
|
|
35
35
|
"preparePackage": {
|
|
36
36
|
"input": "./src",
|
|
37
37
|
"output": "./dist",
|
|
38
|
-
"replace": {}
|
|
38
|
+
"replace": {},
|
|
39
|
+
"type": "copy"
|
|
39
40
|
},
|
|
40
41
|
"projectScripts": {
|
|
41
42
|
"start": "npx mgr clean && npx mgr setup && npm run gulp --",
|
|
@@ -68,7 +69,7 @@
|
|
|
68
69
|
},
|
|
69
70
|
"homepage": "https://template.itwcreativeworks.com",
|
|
70
71
|
"dependencies": {
|
|
71
|
-
"@anthropic-ai/claude-agent-sdk": "^0.2.
|
|
72
|
+
"@anthropic-ai/claude-agent-sdk": "^0.2.76",
|
|
72
73
|
"@babel/core": "^7.29.0",
|
|
73
74
|
"@babel/preset-env": "^7.29.0",
|
|
74
75
|
"@popperjs/core": "^2.11.8",
|
|
@@ -86,13 +87,13 @@
|
|
|
86
87
|
"json5": "^2.2.3",
|
|
87
88
|
"lodash": "^4.17.23",
|
|
88
89
|
"minimatch": "^10.2.4",
|
|
89
|
-
"node-powertools": "^
|
|
90
|
+
"node-powertools": "^3.0.0",
|
|
90
91
|
"npm-api": "^1.0.1",
|
|
91
92
|
"sass": "^1.98.0",
|
|
92
93
|
"through2": "^4.0.2",
|
|
93
|
-
"web-manager": "^4.1.
|
|
94
|
+
"web-manager": "^4.1.28",
|
|
94
95
|
"webpack": "^5.105.4",
|
|
95
|
-
"wonderful-fetch": "^
|
|
96
|
+
"wonderful-fetch": "^2.0.4",
|
|
96
97
|
"wonderful-version": "^1.3.2",
|
|
97
98
|
"ws": "^8.19.0",
|
|
98
99
|
"yargs": "^18.0.0"
|
|
@@ -101,6 +102,6 @@
|
|
|
101
102
|
"gulp": "^5.0.1"
|
|
102
103
|
},
|
|
103
104
|
"devDependencies": {
|
|
104
|
-
"prepare-package": "^
|
|
105
|
+
"prepare-package": "^2.0.7"
|
|
105
106
|
}
|
|
106
107
|
}
|