@thi.ng/imago 1.1.5 → 1.1.7
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 +7 -1
- package/README.md +1 -1
- package/ops/output.js +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2025-07-
|
|
3
|
+
- **Last updated**: 2025-07-13T21:35:34Z
|
|
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.
|
|
@@ -11,6 +11,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
|
|
|
11
11
|
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
|
|
12
12
|
and/or version bumps of transitive dependencies.
|
|
13
13
|
|
|
14
|
+
### [1.1.6](https://github.com/thi-ng/umbrella/tree/@thi.ng/imago@1.1.6) (2025-07-12)
|
|
15
|
+
|
|
16
|
+
#### 🩹 Bug fixes
|
|
17
|
+
|
|
18
|
+
- update raw output, remove alpha if needed ([c0559bf](https://github.com/thi-ng/umbrella/commit/c0559bf))
|
|
19
|
+
|
|
14
20
|
### [1.1.3](https://github.com/thi-ng/umbrella/tree/@thi.ng/imago@1.1.3) (2025-07-02)
|
|
15
21
|
|
|
16
22
|
#### 🩹 Bug fixes
|
package/README.md
CHANGED
package/ops/output.js
CHANGED
|
@@ -86,6 +86,7 @@ const outputProc = async (spec, input, ctx) => {
|
|
|
86
86
|
const __outputRaw = async (opts, output, ctx, outDir) => {
|
|
87
87
|
const { alpha = false, meta = false } = isPlainObject(opts.raw) ? opts.raw : {};
|
|
88
88
|
if (alpha) output = output.ensureAlpha();
|
|
89
|
+
else output = output.removeAlpha();
|
|
89
90
|
const { data, info } = await output.raw().toBuffer({ resolveWithObject: true });
|
|
90
91
|
if (opts.path !== void 0) {
|
|
91
92
|
const path = join(outDir, formatPath(opts.path, ctx, opts, data));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/imago",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.7",
|
|
4
4
|
"description": "JSON & API-based declarative and extensible image processing trees/pipelines",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -189,5 +189,5 @@
|
|
|
189
189
|
"status": "alpha",
|
|
190
190
|
"year": 2024
|
|
191
191
|
},
|
|
192
|
-
"gitHead": "
|
|
192
|
+
"gitHead": "a81765bd79046980463c56a8bd187f9aaa88dd65\n"
|
|
193
193
|
}
|