@thi.ng/pixel-dither 1.1.153 → 1.1.155

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,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
@@ -32,55 +34,3 @@ and/or version bumps of transitive dependencies.
32
34
  #### ♻️ Refactoring
33
35
 
34
36
  - update all tests (packages A-S) ([e3085e4](https://github.com/thi-ng/umbrella/commit/e3085e4))
35
-
36
- ## [1.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/pixel-dither@1.1.0) (2021-11-17)
37
-
38
- #### 🚀 Features
39
-
40
- - Using workspaces for local tools ([bf7a404](https://github.com/thi-ng/umbrella/commit/bf7a404))
41
- Improving the overall build ergonomics
42
- - introduced a tools workspaces
43
- - imported it in all needed packages/examples
44
- - inclusive project root
45
-
46
- #### ♻️ Refactoring
47
-
48
- - testrunner to binary ([4ebbbb2](https://github.com/thi-ng/umbrella/commit/4ebbbb2))
49
- this commit reverts (partly) changes made in:
50
- ef346d7a8753590dc9094108a3d861a8dbd5dd2c
51
- overall purpose is better testament ergonomics:
52
- instead of having to pass NODE_OPTIONS with every invocation
53
- having a binary to handle this for us.
54
-
55
- ### [1.0.9](https://github.com/thi-ng/umbrella/tree/@thi.ng/pixel-dither@1.0.9) (2021-11-04)
56
-
57
- #### ♻️ Refactoring
58
-
59
- - minor changes (rename types) ([4fc248a](https://github.com/thi-ng/umbrella/commit/4fc248a))
60
-
61
- ### [1.0.8](https://github.com/thi-ng/umbrella/tree/@thi.ng/pixel-dither@1.0.8) (2021-11-03)
62
-
63
- #### ♻️ Refactoring
64
-
65
- - minor update ([69b3028](https://github.com/thi-ng/umbrella/commit/69b3028))
66
-
67
- ### [1.0.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/pixel-dither@1.0.1) (2021-10-13)
68
-
69
- #### ♻️ Refactoring
70
-
71
- - update imports in all pkgs ([5fa2b6f](https://github.com/thi-ng/umbrella/commit/5fa2b6f))
72
- - add .js suffix for all relative imports
73
- - update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
74
-
75
- ## [0.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/pixel-dither@0.1.0) (2021-10-12)
76
-
77
- #### 🚀 Features
78
-
79
- - import as new pkg ([4294df4](https://github.com/thi-ng/umbrella/commit/4294df4))
80
- - add ditherWithKernel() & various presets ([e2ce82a](https://github.com/thi-ng/umbrella/commit/e2ce82a))
81
-
82
- #### ♻️ Refactoring
83
-
84
- - simplify kernel defs/handling ([3d9d807](https://github.com/thi-ng/umbrella/commit/3d9d807))
85
- - update ditherWith() to only require DitherKernel
86
- - remove obsolete DitherKernelFactory type alias
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/pixel-dither",
3
- "version": "1.1.153",
3
+ "version": "1.1.155",
4
4
  "description": "Extensible image dithering w/ various algorithm presets",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -33,22 +33,20 @@
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/checks": "^3.6.20",
44
- "@thi.ng/math": "^5.11.17",
45
- "@thi.ng/pixel": "^7.3.13"
42
+ "@thi.ng/checks": "^3.6.22",
43
+ "@thi.ng/math": "^5.11.19",
44
+ "@thi.ng/pixel": "^7.3.15"
46
45
  },
47
46
  "devDependencies": {
48
- "@microsoft/api-extractor": "^7.48.1",
49
47
  "esbuild": "^0.24.2",
50
48
  "typedoc": "^0.27.6",
51
- "typescript": "^5.7.2"
49
+ "typescript": "^5.7.3"
52
50
  },
53
51
  "keywords": [
54
52
  "1bit",
@@ -116,5 +114,5 @@
116
114
  "parent": "@thi.ng/pixel",
117
115
  "year": 2021
118
116
  },
119
- "gitHead": "22f6d518aed5951bb37b406c8ae85a6c3e6be517\n"
117
+ "gitHead": "fc1d498e8d4b690db873c30cc594352a804e7a65\n"
120
118
  }