@applitools/eyes 1.34.0-debug.20250424-4 → 1.34.1

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,5 +1,36 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.34.1](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.34.0...js/eyes@1.34.1) (2025-04-29)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/dom-snapshot bumped to 4.11.19
9
+
10
+ * @applitools/driver bumped to 1.21.2
11
+ #### Bug Fixes
12
+
13
+ * not properly detected platform if written with underscore | FLD-2892 ([#2934](https://github.com/Applitools-Dev/sdk/issues/2934)) ([5ca4eb9](https://github.com/Applitools-Dev/sdk/commit/5ca4eb9d952cb089b7b3678d0d6f242ac7f9dad5))
14
+ * @applitools/spec-driver-webdriver bumped to 1.2.3
15
+
16
+ * @applitools/spec-driver-selenium bumped to 1.5.99
17
+
18
+ * @applitools/spec-driver-puppeteer bumped to 1.4.28
19
+
20
+ * @applitools/screenshoter bumped to 3.11.2
21
+
22
+ * @applitools/nml-client bumped to 1.9.2
23
+
24
+ * @applitools/ec-client bumped to 1.10.10
25
+
26
+ * @applitools/core bumped to 4.37.1
27
+ #### Bug Fixes
28
+
29
+ * handle slashes in branch name extraction from GITHUB_REF ([#2937](https://github.com/Applitools-Dev/sdk/issues/2937)) ([aa8bfa3](https://github.com/Applitools-Dev/sdk/commit/aa8bfa3118f43c52485362f729556acceea40ac6))
30
+
31
+
32
+
33
+
3
34
  ## [1.34.0](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.33.4...js/eyes@1.34.0) (2025-04-17)
4
35
 
5
36
 
package/dist/cli/cli.js CHANGED
@@ -5,15 +5,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  };
6
6
  Object.defineProperty(exports, "__esModule", { value: true });
7
7
  /* eslint no-console: off */
8
- const wtfnode_1 = __importDefault(require("wtfnode"));
9
- wtfnode_1.default.init(); // must be called before importing any other modules
10
- console.time('entire process');
11
8
  const core_1 = require("@applitools/core");
12
9
  const yargs_1 = __importDefault(require("yargs"));
13
10
  const Configuration_1 = require("../input/Configuration");
14
11
  const load_config_1 = require("./load-config");
15
- const logger_1 = require("@applitools/logger");
16
- setWtfNode();
17
12
  void yargs_1.default
18
13
  .example([['eyes run-offline-snapshots', 'Run Eyes visual tests on existing snapshots']])
19
14
  .command({
@@ -59,35 +54,3 @@ void yargs_1.default
59
54
  },
60
55
  })
61
56
  .wrap(yargs_1.default.terminalWidth()).argv;
62
- function setWtfNode() {
63
- const logger = (0, logger_1.makeLogger)();
64
- wtfnode_1.default.setLogger('error', message => {
65
- logger.error(message);
66
- });
67
- wtfnode_1.default.setLogger('warn', message => {
68
- logger.warn(message);
69
- });
70
- wtfnode_1.default.setLogger('info', message => {
71
- logger.info(message);
72
- });
73
- let count = 0;
74
- process.on('beforeExit', code => {
75
- if (count == 0) {
76
- console.time('beforeExit');
77
- console.log('beforeExit');
78
- logger.info('Done executing process (beforeExit)');
79
- wtfnode_1.default.dump();
80
- logger.info('Done dumping');
81
- console.timeEnd('beforeExit');
82
- console.timeEnd('entire process');
83
- }
84
- else if (count < 5) {
85
- console.warn(`beforeExit called ${count} times`);
86
- }
87
- else {
88
- console.warn(`beforeExit called ${count} times, force exiting`);
89
- process.exit(code);
90
- }
91
- count++;
92
- });
93
- }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes",
3
- "version": "1.34.0-debug.20250424-4",
3
+ "version": "1.34.1",
4
4
  "keywords": [
5
5
  "applitools",
6
6
  "eyes",
@@ -46,17 +46,15 @@
46
46
  "test": "run --top-level mocha './test/**/*.spec.ts'"
47
47
  },
48
48
  "dependencies": {
49
- "@applitools/core": "4.37.0",
49
+ "@applitools/core": "4.37.1",
50
50
  "@applitools/logger": "2.1.2",
51
51
  "@applitools/utils": "1.8.0",
52
52
  "chalk": "4.1.2",
53
- "wtfnode": "^0.10.0",
54
53
  "yargs": "17.7.2"
55
54
  },
56
55
  "devDependencies": {
57
56
  "@applitools/req": "^1.7.10",
58
- "@types/node": "^12.20.55",
59
- "@types/wtfnode": "^0"
57
+ "@types/node": "^12.20.55"
60
58
  },
61
59
  "engines": {
62
60
  "node": ">=12.13.0"