screenwright 0.2.8 → 0.3.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/dist/src/commands/compose.js +1 -1
- package/dist/src/commands/compose.js.map +1 -1
- package/dist/src/commands/config.js +2 -2
- package/dist/src/commands/config.js.map +1 -1
- package/dist/src/commands/init.js +8 -8
- package/dist/src/commands/init.js.map +1 -1
- package/dist/src/config/config-schema.d.ts +3 -3
- package/dist/src/config/config-schema.js +1 -1
- package/dist/src/config/config-schema.js.map +1 -1
- package/dist/src/config/defaults.js +1 -1
- package/dist/src/config/defaults.js.map +1 -1
- package/dist/src/runtime/action-helpers.d.ts.map +1 -1
- package/dist/src/runtime/action-helpers.js +8 -2
- package/dist/src/runtime/action-helpers.js.map +1 -1
- package/dist/src/runtime/narration-preprocess.d.ts.map +1 -1
- package/dist/src/runtime/narration-preprocess.js +4 -1
- package/dist/src/runtime/narration-preprocess.js.map +1 -1
- package/dist/src/timeline/types.d.ts +1 -0
- package/dist/src/timeline/types.d.ts.map +1 -1
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/skill/SKILL.md +3 -3
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: screenwright
|
|
3
3
|
description: Turn Playwright E2E tests into polished product demo videos
|
|
4
4
|
user_invocable: true
|
|
5
|
-
version: 0.
|
|
5
|
+
version: 0.3.0
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# Screenwright
|
|
@@ -16,8 +16,8 @@ Check if the CLI is available and compatible:
|
|
|
16
16
|
screenwright --version || npx screenwright --version
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
This skill requires CLI version **0.
|
|
20
|
-
> Install the compatible version: `npm install -g screenwright@0.
|
|
19
|
+
This skill requires CLI version **0.3.x**. If the CLI is not installed or the major/minor version doesn't match, tell the user:
|
|
20
|
+
> Install the compatible version: `npm install -g screenwright@0.3`
|
|
21
21
|
> Then run `screenwright init` to configure the tool for your repo.
|
|
22
22
|
|
|
23
23
|
## Output Directory
|