@thi.ng/dl-asset 2.3.16 → 2.3.17

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**: 2022-10-28T19:08:39Z
3
+ - **Last updated**: 2022-11-23T22:46:54Z
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.
@@ -44,9 +44,9 @@ and/or version bumps of transitive dependencies.
44
44
 
45
45
  #### ♻️ Refactoring
46
46
 
47
- - update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
48
47
  - update imports in all pkgs ([5fa2b6f](https://github.com/thi-ng/umbrella/commit/5fa2b6f))
49
48
  - add .js suffix for all relative imports
49
+ - update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
50
50
 
51
51
  # [2.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/dl-asset@2.0.0) (2021-10-12)
52
52
 
@@ -67,10 +67,10 @@ and/or version bumps of transitive dependencies.
67
67
 
68
68
  #### ♻️ Refactoring
69
69
 
70
- - update imports ([29a7681](https://github.com/thi-ng/umbrella/commit/29a7681))
71
- - update all test stubs ([f2d6d53](https://github.com/thi-ng/umbrella/commit/f2d6d53))
72
70
  - update all tests in _all_ pkgs ([8b582bc](https://github.com/thi-ng/umbrella/commit/8b582bc))
73
71
  - update all to use [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament)
72
+ - update all test stubs ([f2d6d53](https://github.com/thi-ng/umbrella/commit/f2d6d53))
73
+ - update imports ([29a7681](https://github.com/thi-ng/umbrella/commit/29a7681))
74
74
 
75
75
  ## [0.4.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/dl-asset@0.4.0) (2020-07-08)
76
76
 
package/README.md CHANGED
@@ -85,6 +85,7 @@ A selection:
85
85
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/rstream-grid.jpg" width="240"/> | Interactive grid generator, SVG generation & export, undo/redo support | [Demo](https://demo.thi.ng/umbrella/rstream-grid/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rstream-grid) |
86
86
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/webgl-channel-mixer.jpg" width="240"/> | rdom & WebGL-based image channel editor | [Demo](https://demo.thi.ng/umbrella/webgl-channel-mixer/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/webgl-channel-mixer) |
87
87
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/wolfram.png" width="240"/> | 1D Wolfram automata with OBJ point cloud export | [Demo](https://demo.thi.ng/umbrella/wolfram/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/wolfram) |
88
+ | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/zig-canvas.png" width="240"/> | Zig-based DOM creation & canvas drawing app | [Demo](https://demo.thi.ng/umbrella/zig-canvas/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/zig-canvas) |
88
89
 
89
90
  ## API
90
91
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/dl-asset",
3
- "version": "2.3.16",
3
+ "version": "2.3.17",
4
4
  "description": "Canvas, video recording & file asset download helpers for web apps",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,16 +34,16 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.4.5",
38
- "@thi.ng/checks": "^3.3.2",
39
- "@thi.ng/mime": "^2.2.7"
37
+ "@thi.ng/api": "^8.4.6",
38
+ "@thi.ng/checks": "^3.3.3",
39
+ "@thi.ng/mime": "^2.2.8"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@microsoft/api-extractor": "^7.33.5",
43
- "@thi.ng/testament": "^0.3.4",
43
+ "@thi.ng/testament": "^0.3.5",
44
44
  "rimraf": "^3.0.2",
45
45
  "tools": "^0.0.1",
46
- "typedoc": "^0.23.18",
46
+ "typedoc": "^0.23.20",
47
47
  "typescript": "^4.8.4"
48
48
  },
49
49
  "keywords": [
@@ -63,8 +63,8 @@
63
63
  "node": ">=12.7"
64
64
  },
65
65
  "files": [
66
- "*.js",
67
- "*.d.ts"
66
+ "./*.js",
67
+ "./*.d.ts"
68
68
  ],
69
69
  "exports": {
70
70
  ".": {
@@ -89,5 +89,5 @@
89
89
  ],
90
90
  "year": 2020
91
91
  },
92
- "gitHead": "a4b60163a8caddceed5ec1b6b3584d164f61e7b6\n"
92
+ "gitHead": "044ee6a3895720fc78e115032d4d831b63510929\n"
93
93
  }