@blazediff/cli 2.0.5 → 2.1.0
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/README.md +0 -1
- package/dist/cli.js +0 -4
- package/dist/commands/bin.js +0 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -38,7 +38,6 @@ blazediff-cli bin image1.png image2.png diff.png [options]
|
|
|
38
38
|
- `-t, --threshold <num>` - Color difference threshold (0 to 1, default: 0.1)
|
|
39
39
|
- `-a, --antialiasing` - Enable anti-aliasing detection
|
|
40
40
|
- `--diff-mask` - Output only differences (transparent background)
|
|
41
|
-
- `--fail-on-layout` - Fail immediately if images have different dimensions
|
|
42
41
|
- `-c, --compression <num>` - PNG compression level (0-9, default: 0)
|
|
43
42
|
- `-h, --help` - Show help message
|
|
44
43
|
|
package/dist/cli.js
CHANGED
|
@@ -51,7 +51,6 @@ Options:
|
|
|
51
51
|
-t, --threshold <num> Color difference threshold (0 to 1, default: 0.1)
|
|
52
52
|
-a, --antialiasing Enable anti-aliasing detection
|
|
53
53
|
--diff-mask Output only differences (transparent background)
|
|
54
|
-
--fail-on-layout Fail immediately if images have different dimensions
|
|
55
54
|
-c, --compression <num> PNG compression level (0-9, default: 0)
|
|
56
55
|
-h, --help Show this help message
|
|
57
56
|
|
|
@@ -101,9 +100,6 @@ async function main() {
|
|
|
101
100
|
case "--diff-mask":
|
|
102
101
|
options.diffMask = true;
|
|
103
102
|
break;
|
|
104
|
-
case "--fail-on-layout":
|
|
105
|
-
options.failOnLayoutDiff = true;
|
|
106
|
-
break;
|
|
107
103
|
case "-c":
|
|
108
104
|
case "--compression":
|
|
109
105
|
if (nextArg) {
|
package/dist/commands/bin.js
CHANGED
|
@@ -38,7 +38,6 @@ Options:
|
|
|
38
38
|
-t, --threshold <num> Color difference threshold (0 to 1, default: 0.1)
|
|
39
39
|
-a, --antialiasing Enable anti-aliasing detection
|
|
40
40
|
--diff-mask Output only differences (transparent background)
|
|
41
|
-
--fail-on-layout Fail immediately if images have different dimensions
|
|
42
41
|
-c, --compression <num> PNG compression level (0-9, default: 0)
|
|
43
42
|
-h, --help Show this help message
|
|
44
43
|
|
|
@@ -88,9 +87,6 @@ async function main() {
|
|
|
88
87
|
case "--diff-mask":
|
|
89
88
|
options.diffMask = true;
|
|
90
89
|
break;
|
|
91
|
-
case "--fail-on-layout":
|
|
92
|
-
options.failOnLayoutDiff = true;
|
|
93
|
-
break;
|
|
94
90
|
case "-c":
|
|
95
91
|
case "--compression":
|
|
96
92
|
if (nextArg) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blazediff/cli",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "Command-line interface for the blazediff image comparison library",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"homepage": "https://blazediff.dev",
|
|
38
38
|
"license": "MIT",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@blazediff/bin": "3.
|
|
40
|
+
"@blazediff/bin": "3.2.0",
|
|
41
41
|
"@blazediff/core": "1.9.1",
|
|
42
42
|
"@blazediff/gmsd": "1.7.1",
|
|
43
43
|
"@blazediff/pngjs-transformer": "2.1.1",
|