@applitools/eyes-cypress 3.24.0-beta.0 → 3.24.0-beta.3
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 +9 -2
- package/bin/eyes-setup.js +21 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,9 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
|
|
6
|
+
## 3.24.0-beta.2 - 2022/3/2
|
|
7
|
+
|
|
8
|
+
- add bin folder
|
|
9
|
+
|
|
10
|
+
## 3.24.0-beta.1 - 2022/3/2
|
|
11
|
+
|
|
5
12
|
- convert cypress to work on top of universal
|
|
6
|
-
- updated to @applitools/logger@1.0.11 (from 1.0.9)
|
|
7
|
-
- updated to @applitools/visual-grid-client@15.9.0 (from 15.8.57)
|
|
13
|
+
- updated to @applitools/logger@1.0.11 (from 1.0.9)
|
|
14
|
+
- updated to @applitools/visual-grid-client@15.9.0 (from 15.8.57)
|
|
8
15
|
|
|
9
16
|
## 3.23.9 - 2022/2/22
|
|
10
17
|
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
const chalk = require('chalk');
|
|
5
|
+
const handlePlugin = require('../src/setup/handlePlugin');
|
|
6
|
+
const handleCommands = require('../src/setup/handleCommands');
|
|
7
|
+
const handleTypeScript = require('../src/setup/handleTypeScript');
|
|
8
|
+
const {version} = require('../package');
|
|
9
|
+
const cwd = process.cwd();
|
|
10
|
+
|
|
11
|
+
console.log(chalk.cyan('Setup eyes-cypress', version));
|
|
12
|
+
|
|
13
|
+
try {
|
|
14
|
+
handlePlugin(cwd);
|
|
15
|
+
handleCommands(cwd);
|
|
16
|
+
handleTypeScript(cwd);
|
|
17
|
+
} catch (e) {
|
|
18
|
+
console.log(chalk.red('Setup error:\n', e));
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
console.log(chalk.cyan('Setup done!'));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-cypress",
|
|
3
|
-
"version": "3.24.0-beta.
|
|
3
|
+
"version": "3.24.0-beta.3",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"bin": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@applitools/dom-snapshot": "4.5.12",
|
|
50
|
-
"@applitools/eyes-universal": "1.1.0",
|
|
50
|
+
"@applitools/eyes-universal": "1.1.1-beta.0",
|
|
51
51
|
"@applitools/functional-commons": "1.6.0",
|
|
52
52
|
"@applitools/logger": "1.0.11",
|
|
53
53
|
"@applitools/visual-grid-client": "15.9.0",
|