web-manager 4.1.26 → 4.1.28

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 CHANGED
@@ -14,6 +14,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
14
14
  - `Fixed` for any bug fixes.
15
15
  - `Security` in case of vulnerabilities.
16
16
 
17
+ ---
18
+ ## [4.1.28] - 2026-03-15
19
+ ### Changed
20
+ - Bumped `chatsy` from `^2.0.5` to `^2.0.8`.
21
+ - Upgraded `prepare-package` from `^1.2.6` to `^2.0.7` (major version with esbuild bundler).
22
+ - Added `preparePackage.type = "copy"` config option.
23
+
24
+ ---
25
+ ## [4.1.27] - 2026-03-14
26
+ ### Changed
27
+ - Renamed default brand config values from `id:'app'`/`name:'Application'` to `id:'brand'`/`name:'Brand'`.
28
+ - Renamed service worker config key from `app` to `brand` to align with brand terminology.
29
+
17
30
  ---
18
31
  ## [4.1.25] - 2026-03-13
19
32
  ### Added
package/dist/index.js CHANGED
@@ -166,8 +166,8 @@ class Manager {
166
166
  environment: 'production',
167
167
  buildTime: Date.now(),
168
168
  brand: {
169
- id: 'app',
170
- name: 'Application',
169
+ id: 'brand',
170
+ name: 'Brand',
171
171
  description: '',
172
172
  type: 'Organization',
173
173
  images: {
@@ -39,7 +39,7 @@ class ServiceWorker {
39
39
 
40
40
  // Build config object to pass to service worker
41
41
  const config = {
42
- app: this.manager.config.brand?.id,
42
+ brand: this.manager.config.brand?.id,
43
43
  environment: this.manager.config.environment,
44
44
  buildTime: this.manager.config.buildTime,
45
45
  firebase: this.manager.config.firebase?.app?.config || null
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-manager",
3
- "version": "4.1.26",
3
+ "version": "4.1.28",
4
4
  "description": "Easily access important variables such as the query string, current domain, and current page in a single object.",
5
5
  "main": "dist/index.js",
6
6
  "module": "src/index.js",
@@ -36,20 +36,21 @@
36
36
  "preparePackage": {
37
37
  "input": "./src",
38
38
  "output": "./dist",
39
- "replace": {}
39
+ "replace": {},
40
+ "type": "copy"
40
41
  },
41
42
  "notes": {
42
43
  "@sentry/browser": "Resolved by using OVERRIDES in web-manager (lighthouse is the issue"
43
44
  },
44
45
  "dependencies": {
45
46
  "@sentry/browser": "^10.43.0",
46
- "chatsy": "^2.0.5",
47
+ "chatsy": "^2.0.9",
47
48
  "firebase": "^12.10.0",
48
49
  "itwcw-package-analytics": "^1.0.8",
49
50
  "lodash": "^4.17.23"
50
51
  },
51
52
  "devDependencies": {
52
53
  "mocha": "^11.7.5",
53
- "prepare-package": "^1.2.6"
54
+ "prepare-package": "^2.0.7"
54
55
  }
55
56
  }