@thi.ng/webgl 6.6.27 → 6.6.29

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:57Z
3
+ - **Last updated**: 2024-02-16T20:01:44Z
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
+ ### [6.6.28](https://github.com/thi-ng/umbrella/tree/@thi.ng/webgl@6.6.28) (2024-02-16)
13
+
14
+ #### ♻️ Refactoring
15
+
16
+ - update LOGGER handling ([744ebed](https://github.com/thi-ng/umbrella/commit/744ebed))
17
+
12
18
  ### [6.6.26](https://github.com/thi-ng/umbrella/tree/@thi.ng/webgl@6.6.26) (2024-02-06)
13
19
 
14
20
  #### ♻️ Refactoring
package/README.md CHANGED
@@ -111,7 +111,7 @@ For Node.js REPL:
111
111
  const webgl = await import("@thi.ng/webgl");
112
112
  ```
113
113
 
114
- Package sizes (brotli'd, pre-treeshake): ESM: 11.53 KB
114
+ Package sizes (brotli'd, pre-treeshake): ESM: 11.54 KB
115
115
 
116
116
  ## Dependencies
117
117
 
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("webgl");
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/webgl",
3
- "version": "6.6.27",
3
+ "version": "6.6.29",
4
4
  "description": "WebGL & GLSL abstraction layer",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -40,21 +40,21 @@
40
40
  },
41
41
  "dependencies": {
42
42
  "@thi.ng/api": "^8.9.23",
43
- "@thi.ng/associative": "^6.3.37",
43
+ "@thi.ng/associative": "^6.3.39",
44
44
  "@thi.ng/canvas": "^0.2.5",
45
45
  "@thi.ng/checks": "^3.4.23",
46
46
  "@thi.ng/equiv": "^2.1.47",
47
47
  "@thi.ng/errors": "^2.4.16",
48
- "@thi.ng/logger": "^2.1.10",
49
- "@thi.ng/matrices": "^2.3.12",
48
+ "@thi.ng/logger": "^3.0.0",
49
+ "@thi.ng/matrices": "^2.3.14",
50
50
  "@thi.ng/memoize": "^3.1.57",
51
- "@thi.ng/pixel": "^6.1.6",
52
- "@thi.ng/shader-ast": "^0.13.8",
53
- "@thi.ng/shader-ast-glsl": "^0.4.98",
54
- "@thi.ng/shader-ast-stdlib": "^0.16.23",
55
- "@thi.ng/transducers": "^8.9.1",
56
- "@thi.ng/vector-pools": "^3.1.104",
57
- "@thi.ng/vectors": "^7.10.6"
51
+ "@thi.ng/pixel": "^6.1.8",
52
+ "@thi.ng/shader-ast": "^0.13.10",
53
+ "@thi.ng/shader-ast-glsl": "^0.4.100",
54
+ "@thi.ng/shader-ast-stdlib": "^0.16.25",
55
+ "@thi.ng/transducers": "^8.9.3",
56
+ "@thi.ng/vector-pools": "^3.1.106",
57
+ "@thi.ng/vectors": "^7.10.8"
58
58
  },
59
59
  "devDependencies": {
60
60
  "@microsoft/api-extractor": "^7.40.1",
@@ -219,5 +219,5 @@
219
219
  ],
220
220
  "year": 2014
221
221
  },
222
- "gitHead": "e5e7d5c6ed2eadee7a91d59cbd0c86ce880ab1c5\n"
222
+ "gitHead": "ea2ec2e4f14c572bbfac00c43953a6c4033da09e\n"
223
223
  }