@thi.ng/hdom 9.4.13 → 9.4.15

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
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-02-10T08:59:56Z
3
+ - **Last updated**: 2024-02-19T16:07:07Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
@@ -9,6 +9,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
9
9
  **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
10
10
  and/or version bumps of transitive dependencies.
11
11
 
12
+ ### [9.4.14](https://github.com/thi-ng/umbrella/tree/@thi.ng/hdom@9.4.14) (2024-02-16)
13
+
14
+ #### ♻️ Refactoring
15
+
16
+ - update LOGGER handling ([83ea177](https://github.com/thi-ng/umbrella/commit/83ea177))
17
+
12
18
  ## [9.4.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/hdom@9.4.0) (2023-12-11)
13
19
 
14
20
  #### 🚀 Features
package/README.md CHANGED
@@ -172,7 +172,7 @@ yarn install
172
172
  yarn start
173
173
  ```
174
174
 
175
- Package sizes (brotli'd, pre-treeshake): ESM: 3.49 KB
175
+ Package sizes (brotli'd, pre-treeshake): ESM: 3.48 KB
176
176
 
177
177
  ## Dependencies
178
178
 
package/logger.d.ts CHANGED
@@ -1,4 +1,5 @@
1
- import type { ILogger } from "@thi.ng/logger";
2
- export declare let LOGGER: ILogger;
3
- export declare const setLogger: (logger: ILogger) => ILogger;
1
+ /**
2
+ * See [thi.ng/logger](https://docs.thi.ng/umbrella/logger/) for usage.
3
+ */
4
+ export declare const LOGGER: import("@thi.ng/logger/root").ProxyLogger;
4
5
  //# sourceMappingURL=logger.d.ts.map
package/logger.js CHANGED
@@ -1,7 +1,5 @@
1
- import { NULL_LOGGER } from "@thi.ng/logger/null";
2
- let LOGGER = NULL_LOGGER;
3
- const setLogger = (logger) => LOGGER = logger;
1
+ import { ROOT } from "@thi.ng/logger/root";
2
+ const LOGGER = ROOT.childLogger("hdom");
4
3
  export {
5
- LOGGER,
6
- setLogger
4
+ LOGGER
7
5
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/hdom",
3
- "version": "9.4.13",
3
+ "version": "9.4.15",
4
4
  "description": "Lightweight vanilla ES6 UI component trees with customizable branch-local behaviors",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -38,18 +38,18 @@
38
38
  "test": "bun test"
39
39
  },
40
40
  "dependencies": {
41
- "@thi.ng/api": "^8.9.23",
42
- "@thi.ng/checks": "^3.4.23",
43
- "@thi.ng/diff": "^5.1.56",
44
- "@thi.ng/equiv": "^2.1.47",
45
- "@thi.ng/errors": "^2.4.16",
46
- "@thi.ng/hiccup": "^5.1.12",
47
- "@thi.ng/logger": "^2.1.10",
48
- "@thi.ng/prefixes": "^2.3.8"
41
+ "@thi.ng/api": "^8.9.24",
42
+ "@thi.ng/checks": "^3.4.24",
43
+ "@thi.ng/diff": "^5.1.57",
44
+ "@thi.ng/equiv": "^2.1.48",
45
+ "@thi.ng/errors": "^2.4.17",
46
+ "@thi.ng/hiccup": "^5.1.13",
47
+ "@thi.ng/logger": "^3.0.1",
48
+ "@thi.ng/prefixes": "^2.3.9"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@microsoft/api-extractor": "^7.40.1",
52
- "@thi.ng/atom": "^5.2.30",
52
+ "@thi.ng/atom": "^5.2.31",
53
53
  "esbuild": "^0.20.0",
54
54
  "rimraf": "^5.0.5",
55
55
  "typedoc": "^0.25.7",
@@ -131,5 +131,5 @@
131
131
  "status": "completed",
132
132
  "year": 2015
133
133
  },
134
- "gitHead": "e5e7d5c6ed2eadee7a91d59cbd0c86ce880ab1c5\n"
134
+ "gitHead": "2724c87ca41810f2112f9d8c3d6b90dfaeea876b\n"
135
135
  }