@thi.ng/rasterize 1.0.132 → 1.0.134

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +3 -41
  2. package/README.md +1 -1
  3. package/package.json +10 -12
package/CHANGELOG.md CHANGED
@@ -1,9 +1,11 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-01-21T15:46:53Z
3
+ - **Last updated**: 2025-01-29T16:25:48Z
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.
7
+ Only versions published since **2022-01-01** are listed here.
8
+ Please consult the Git history for older version information.
7
9
  See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.
8
10
 
9
11
  **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
@@ -48,43 +50,3 @@ and/or version bumps of transitive dependencies.
48
50
  - add [@thi.ng/porter-duff](https://github.com/thi-ng/umbrella/tree/main/packages/porter-duff) dependency
49
51
  - update Shader2D args, pass target buffer as new initial arg
50
52
  - add `defBlendF()`/`defBlendI()` shader fns for PD blend ops
51
-
52
- ## [0.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/rasterize@0.3.0) (2021-11-17)
53
-
54
- #### 🚀 Features
55
-
56
- - Using workspaces for local tools ([bf7a404](https://github.com/thi-ng/umbrella/commit/bf7a404))
57
- Improving the overall build ergonomics
58
- - introduced a tools workspaces
59
- - imported it in all needed packages/examples
60
- - inclusive project root
61
-
62
- #### ♻️ Refactoring
63
-
64
- - testrunner to binary ([4ebbbb2](https://github.com/thi-ng/umbrella/commit/4ebbbb2))
65
- this commit reverts (partly) changes made in:
66
- ef346d7a8753590dc9094108a3d861a8dbd5dd2c
67
- overall purpose is better testament ergonomics:
68
- instead of having to pass NODE_OPTIONS with every invocation
69
- having a binary to handle this for us.
70
-
71
- ## [0.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/rasterize@0.2.0) (2021-11-10)
72
-
73
- #### 🚀 Features
74
-
75
- - update to new IGrid2D impls ([71ac0ca](https://github.com/thi-ng/umbrella/commit/71ac0ca))
76
- - add floodFillWith() for custom fill content/procedures
77
- - update/fix rect()
78
- - optimize __draw2D() for primitive values
79
- - add/update deps
80
- - major update/additions ([e6f7fb0](https://github.com/thi-ng/umbrella/commit/e6f7fb0))
81
- - add new shapes (polyline, polygon)
82
- - add "shader" function support for all draw fns
83
- - add shader functions
84
- - rename drawLineWith() => traceLine()
85
-
86
- ## [0.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/rasterize@0.1.0) (2021-11-03)
87
-
88
- #### 🚀 Features
89
-
90
- - import as new pkg ([585eb8d](https://github.com/thi-ng/umbrella/commit/585eb8d))
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  > [!NOTE]
10
- > This is one of 200 standalone projects, maintained as part
10
+ > This is one of 201 standalone projects, maintained as part
11
11
  > of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
12
12
  > and anti-framework.
13
13
  >
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/rasterize",
3
- "version": "1.0.132",
3
+ "version": "1.0.134",
4
4
  "description": "Headless 2D shape drawing, filling & rasterization for arbitrary targets/purposes (no canvas required)",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -33,26 +33,24 @@
33
33
  "build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
34
34
  "clean": "bun ../../tools/src/clean-package.ts",
35
35
  "doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
36
- "doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
37
36
  "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
38
37
  "pub": "yarn npm publish --access public",
39
38
  "test": "bun test",
40
39
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
41
40
  },
42
41
  "dependencies": {
43
- "@thi.ng/api": "^8.11.17",
44
- "@thi.ng/checks": "^3.6.20",
45
- "@thi.ng/equiv": "^2.1.73",
46
- "@thi.ng/grid-iterators": "^4.0.104",
47
- "@thi.ng/porter-duff": "^2.1.95",
48
- "@thi.ng/random": "^4.1.8",
49
- "@thi.ng/transducers": "^9.2.15"
42
+ "@thi.ng/api": "^8.11.19",
43
+ "@thi.ng/checks": "^3.6.22",
44
+ "@thi.ng/equiv": "^2.1.75",
45
+ "@thi.ng/grid-iterators": "^4.0.106",
46
+ "@thi.ng/porter-duff": "^2.1.97",
47
+ "@thi.ng/random": "^4.1.10",
48
+ "@thi.ng/transducers": "^9.2.17"
50
49
  },
51
50
  "devDependencies": {
52
- "@microsoft/api-extractor": "^7.48.1",
53
51
  "esbuild": "^0.24.2",
54
52
  "typedoc": "^0.27.6",
55
- "typescript": "^5.7.2"
53
+ "typescript": "^5.7.3"
56
54
  },
57
55
  "keywords": [
58
56
  "2d",
@@ -128,5 +126,5 @@
128
126
  "status": "alpha",
129
127
  "year": 2021
130
128
  },
131
- "gitHead": "22f6d518aed5951bb37b406c8ae85a6c3e6be517\n"
129
+ "gitHead": "fc1d498e8d4b690db873c30cc594352a804e7a65\n"
132
130
  }