comparadise-utils 1.19.0 → 1.19.2
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/dist/index.js +1 -0
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -113,6 +113,7 @@ function createImageFileName(path, type) {
|
|
|
113
113
|
// screenshots.ts
|
|
114
114
|
function baseExists(path) {
|
|
115
115
|
const fileName = createImageFileName(path, "base");
|
|
116
|
+
console.log("Checking if base image exists at:", fileName);
|
|
116
117
|
const exists = fs2.existsSync(fileName);
|
|
117
118
|
if (!exists) {
|
|
118
119
|
console.log(
|
package/package.json
CHANGED
|
@@ -28,9 +28,10 @@
|
|
|
28
28
|
"peerDependencies": {
|
|
29
29
|
"cypress": ">=12"
|
|
30
30
|
},
|
|
31
|
-
"version": "1.19.
|
|
31
|
+
"version": "1.19.2",
|
|
32
32
|
"scripts": {
|
|
33
33
|
"build": "tsup",
|
|
34
|
-
"postbuild": "echo \"require('./dist/match-screenshot');\" > commands.js"
|
|
34
|
+
"postbuild": "echo \"require('./dist/match-screenshot');\" > commands.js",
|
|
35
|
+
"test": "jest"
|
|
35
36
|
}
|
|
36
37
|
}
|