@applitools/eyes 1.29.0 → 1.29.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/CHANGELOG.md +35 -0
- package/dist/cli/load-config.js +5 -5
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.29.2](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.29.1...js/eyes@1.29.2) (2024-12-05)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* @applitools/ufg-client bumped to 1.15.0
|
|
9
|
+
#### Features
|
|
10
|
+
|
|
11
|
+
* deterministic output for offline mode ([#2666](https://github.com/Applitools-Dev/sdk/issues/2666)) ([0e158c4](https://github.com/Applitools-Dev/sdk/commit/0e158c4ea62c4681513a952a9e2a681c4618a6bd))
|
|
12
|
+
* @applitools/core-base bumped to 1.20.0
|
|
13
|
+
#### Features
|
|
14
|
+
|
|
15
|
+
* deterministic output for offline mode ([#2666](https://github.com/Applitools-Dev/sdk/issues/2666)) ([0e158c4](https://github.com/Applitools-Dev/sdk/commit/0e158c4ea62c4681513a952a9e2a681c4618a6bd))
|
|
16
|
+
* @applitools/ec-client bumped to 1.9.16
|
|
17
|
+
|
|
18
|
+
* @applitools/core bumped to 4.26.0
|
|
19
|
+
#### Features
|
|
20
|
+
|
|
21
|
+
* deterministic output for offline mode ([#2666](https://github.com/Applitools-Dev/sdk/issues/2666)) ([0e158c4](https://github.com/Applitools-Dev/sdk/commit/0e158c4ea62c4681513a952a9e2a681c4618a6bd))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
#### Bug Fixes
|
|
25
|
+
|
|
26
|
+
* coded regions dynamic regions with `By` locators ([#2660](https://github.com/Applitools-Dev/sdk/issues/2660)) ([e71b3ae](https://github.com/Applitools-Dev/sdk/commit/e71b3aec7241e61c9ba0d637e6242cedd8f4be7b))
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
## [1.29.1](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.29.0...js/eyes@1.29.1) (2024-11-29)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Bug Fixes
|
|
35
|
+
|
|
36
|
+
* offline cli chalk error ([c7c659a](https://github.com/Applitools-Dev/sdk/commit/c7c659aa889080f2fc7763152db2447211fe1487))
|
|
37
|
+
|
|
3
38
|
## [1.29.0](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.28.0...js/eyes@1.29.0) (2024-11-29)
|
|
4
39
|
|
|
5
40
|
|
package/dist/cli/load-config.js
CHANGED
|
@@ -31,7 +31,7 @@ exports.loadConfig = void 0;
|
|
|
31
31
|
const utils = __importStar(require("@applitools/utils"));
|
|
32
32
|
const path_1 = __importDefault(require("path"));
|
|
33
33
|
const fs_1 = __importDefault(require("fs"));
|
|
34
|
-
const
|
|
34
|
+
const chalk_1 = __importDefault(require("chalk"));
|
|
35
35
|
async function loadConfig(configPath) {
|
|
36
36
|
const configPathArr = configPath ? [configPath] : [];
|
|
37
37
|
const paths = configPathArr.concat(['applitools.config.js']);
|
|
@@ -57,15 +57,15 @@ async function loadConfig(configPath) {
|
|
|
57
57
|
config = await import(foundPath);
|
|
58
58
|
}
|
|
59
59
|
catch (err) {
|
|
60
|
-
console.warn(
|
|
60
|
+
console.warn(chalk_1.default.yellow(err.message));
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
63
|
else {
|
|
64
|
-
console.warn(
|
|
64
|
+
console.warn(chalk_1.default.yellow('Could not find configuration file.'));
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
|
-
else {
|
|
68
|
-
console.warn(
|
|
67
|
+
else if (configPath) {
|
|
68
|
+
console.warn(chalk_1.default.yellow(`${err.message}. configPath: ${path_1.default.resolve(process.cwd(), configPath)}`));
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
return config;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes",
|
|
3
|
-
"version": "1.29.
|
|
3
|
+
"version": "1.29.2",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"applitools",
|
|
6
6
|
"eyes",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"test": "run --top-level mocha './test/**/*.spec.ts'"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@applitools/core": "4.
|
|
49
|
+
"@applitools/core": "4.26.0",
|
|
50
50
|
"@applitools/logger": "2.0.19",
|
|
51
51
|
"@applitools/utils": "1.7.5",
|
|
52
52
|
"chalk": "4.1.2"
|