@percy/cli 1.19.2-alpha.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/README.md +5 -2
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -61,9 +61,9 @@ use the following scripts for various development tasks:
|
|
|
61
61
|
- `yarn test` - run all tests, one package after another
|
|
62
62
|
- `yarn test:coverage` - run all tests with coverage, one package after another
|
|
63
63
|
- `yarn global:link` - links all packages being developed as global.
|
|
64
|
-
- requires `yarn build` to be run before
|
|
64
|
+
- requires `yarn build` to be run before consuming.
|
|
65
65
|
- we can then consume this package using
|
|
66
|
-
`
|
|
66
|
+
`yarn link @percy/[core|cli..]`
|
|
67
67
|
- **Note**: linking is only required once, subsequent changes for development requires running build command.
|
|
68
68
|
|
|
69
69
|
- `yarn global:unlink` - unlinks all packages globally
|
|
@@ -75,6 +75,9 @@ Individual package scripts can be invoked using yarn's
|
|
|
75
75
|
$ yarn workspace @percy/core test
|
|
76
76
|
```
|
|
77
77
|
|
|
78
|
+
### How to update Chromium revision?
|
|
79
|
+
|
|
80
|
+
check in Core Package's readme [here](./packages/core#readme).
|
|
78
81
|
|
|
79
82
|
## Publish
|
|
80
83
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@percy/cli",
|
|
3
|
-
"version": "1.19.2
|
|
3
|
+
"version": "1.19.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -30,15 +30,15 @@
|
|
|
30
30
|
"test:coverage": "yarn test --coverage"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@percy/cli-app": "1.19.2
|
|
34
|
-
"@percy/cli-build": "1.19.2
|
|
35
|
-
"@percy/cli-command": "1.19.2
|
|
36
|
-
"@percy/cli-config": "1.19.2
|
|
37
|
-
"@percy/cli-exec": "1.19.2
|
|
38
|
-
"@percy/cli-snapshot": "1.19.2
|
|
39
|
-
"@percy/cli-upload": "1.19.2
|
|
40
|
-
"@percy/client": "1.19.2
|
|
41
|
-
"@percy/logger": "1.19.2
|
|
33
|
+
"@percy/cli-app": "1.19.2",
|
|
34
|
+
"@percy/cli-build": "1.19.2",
|
|
35
|
+
"@percy/cli-command": "1.19.2",
|
|
36
|
+
"@percy/cli-config": "1.19.2",
|
|
37
|
+
"@percy/cli-exec": "1.19.2",
|
|
38
|
+
"@percy/cli-snapshot": "1.19.2",
|
|
39
|
+
"@percy/cli-upload": "1.19.2",
|
|
40
|
+
"@percy/client": "1.19.2",
|
|
41
|
+
"@percy/logger": "1.19.2"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "609ae53aa84ab2f7054a21214b36dccd71025780"
|
|
44
44
|
}
|