@rettangoli/vt 1.0.0-rc2 → 1.0.0-rc3

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.
Files changed (2) hide show
  1. package/README.md +9 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -125,17 +125,22 @@ Screenshot naming:
125
125
  A pre-built Docker image with `rtgl` and Playwright browsers is available:
126
126
 
127
127
  ```bash
128
- docker pull han4wluc/rtgl:playwright-v1.57.0-rtgl-v1.0.0-rc2
128
+ docker pull han4wluc/rtgl:playwright-v1.57.0-rtgl-v1.0.0-rc4
129
129
  ```
130
130
 
131
131
  Run commands against a local project:
132
132
 
133
133
  ```bash
134
- docker run --rm -v "$(pwd):/workspace" -w /workspace han4wluc/rtgl:playwright-v1.57.0-rtgl-v1.0.0-rc2 rtgl vt generate
135
- docker run --rm -v "$(pwd):/workspace" -w /workspace han4wluc/rtgl:playwright-v1.57.0-rtgl-v1.0.0-rc2 rtgl vt report
136
- docker run --rm -v "$(pwd):/workspace" -w /workspace han4wluc/rtgl:playwright-v1.57.0-rtgl-v1.0.0-rc2 rtgl vt accept
134
+ docker run --rm -v "$(pwd):/workspace" han4wluc/rtgl:playwright-v1.57.0-rtgl-v1.0.0-rc4 rtgl vt generate
135
+ docker run --rm -v "$(pwd):/workspace" han4wluc/rtgl:playwright-v1.57.0-rtgl-v1.0.0-rc4 rtgl vt report
136
+ docker run --rm -v "$(pwd):/workspace" han4wluc/rtgl:playwright-v1.57.0-rtgl-v1.0.0-rc4 rtgl vt accept
137
137
  ```
138
138
 
139
+ Note:
140
+
141
+ - Image default working directory is `/workspace`.
142
+ - Use `-w /workspace/<subdir>` only when running commands from a subfolder within the mounted project.
143
+
139
144
  Supports `linux/amd64` and `linux/arm64`.
140
145
 
141
146
  ## Development
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rettangoli/vt",
3
- "version": "1.0.0-rc2",
3
+ "version": "1.0.0-rc3",
4
4
  "description": "Rettangoli Visual Testing",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",