@xylabs/ts-scripts-yarn3 7.4.20 → 7.4.21
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xylabs/ts-scripts-yarn3",
|
|
3
|
-
"version": "7.4.
|
|
3
|
+
"version": "7.4.21",
|
|
4
4
|
"description": "TypeScript project scripts",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"xylabs",
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"@types/parse-git-config": "~3.0.4",
|
|
94
94
|
"@types/picomatch": "~4.0.2",
|
|
95
95
|
"@types/yargs": "~17.0.35",
|
|
96
|
-
"@xylabs/tsconfig": "~7.4.
|
|
96
|
+
"@xylabs/tsconfig": "~7.4.21",
|
|
97
97
|
"esbuild": "0.27.3",
|
|
98
98
|
"types-package-json": "~2.0.39",
|
|
99
99
|
"typescript": "~5.9.3",
|
|
@@ -181,12 +181,13 @@ into `packages/e2e`. Use the e2e package name you derived in Step 1.
|
|
|
181
181
|
Only add scripts that don't already exist.
|
|
182
182
|
---
|
|
183
183
|
## Step 4 — Install Playwright browsers
|
|
184
|
-
After scaffolding,
|
|
184
|
+
After scaffolding, run the following command via the Bash tool:
|
|
185
185
|
```bash
|
|
186
186
|
yarn workspace <derived-e2e-name> playwright install
|
|
187
187
|
```
|
|
188
188
|
This downloads the Chromium, Firefox, and WebKit browser binaries. Without this step the tests
|
|
189
|
-
will fail immediately with a "browser not found" error.
|
|
189
|
+
will fail immediately with a "browser not found" error. Do not skip this step or ask the user
|
|
190
|
+
to run it manually — execute it directly as part of the setup.
|
|
190
191
|
---
|
|
191
192
|
## Conventions to preserve
|
|
192
193
|
- All files use ESM (`import`/`export`), never CommonJS.
|