@percy/cli 1.19.0-alpha.0 → 2.0.0-alpha.0
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 +0 -28
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -74,31 +74,3 @@ Individual package scripts can be invoked using yarn's
|
|
|
74
74
|
```sh-session
|
|
75
75
|
$ yarn workspace @percy/core test
|
|
76
76
|
```
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
## Publish
|
|
80
|
-
|
|
81
|
-
Most of the repos have similar setup as CLI, steps as follows
|
|
82
|
-
|
|
83
|
-
1. bump version
|
|
84
|
-
|
|
85
|
-
```
|
|
86
|
-
yarn bump-version
|
|
87
|
-
```
|
|
88
|
-
|
|
89
|
-
2. commit with following commit message => `:bookmark: vTAG`
|
|
90
|
-
|
|
91
|
-
3. Draft a new release and publish it
|
|
92
|
-
|
|
93
|
-
This will run release.yml workflow on github actions, which publishes the NPM packages
|
|
94
|
-
|
|
95
|
-
### Publish with specific tag
|
|
96
|
-
|
|
97
|
-
Currently release workflow only support publishing with latest tag.
|
|
98
|
-
To publish with alpha/any other TAG.
|
|
99
|
-
|
|
100
|
-
1. follow till step 2 above and then run
|
|
101
|
-
|
|
102
|
-
```
|
|
103
|
-
yarn lerna publish from-package --dist-tag TAG
|
|
104
|
-
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@percy/cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-alpha.0",
|
|
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": "
|
|
34
|
-
"@percy/cli-build": "
|
|
35
|
-
"@percy/cli-command": "
|
|
36
|
-
"@percy/cli-config": "
|
|
37
|
-
"@percy/cli-exec": "
|
|
38
|
-
"@percy/cli-snapshot": "
|
|
39
|
-
"@percy/cli-upload": "
|
|
40
|
-
"@percy/client": "
|
|
41
|
-
"@percy/logger": "
|
|
33
|
+
"@percy/cli-app": "2.0.0-alpha.0",
|
|
34
|
+
"@percy/cli-build": "2.0.0-alpha.0",
|
|
35
|
+
"@percy/cli-command": "2.0.0-alpha.0",
|
|
36
|
+
"@percy/cli-config": "2.0.0-alpha.0",
|
|
37
|
+
"@percy/cli-exec": "2.0.0-alpha.0",
|
|
38
|
+
"@percy/cli-snapshot": "2.0.0-alpha.0",
|
|
39
|
+
"@percy/cli-upload": "2.0.0-alpha.0",
|
|
40
|
+
"@percy/client": "2.0.0-alpha.0",
|
|
41
|
+
"@percy/logger": "2.0.0-alpha.0"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "6ebc3d59194d6cd25fceb5366ab9f230849a4f41"
|
|
44
44
|
}
|