@tekyzinc/gsd-t 2.20.2 → 2.20.3
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/CHANGELOG.md +5 -0
- package/package.json +1 -1
- package/templates/CLAUDE-global.md +9 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to GSD-T are documented here. Updated with each release.
|
|
4
4
|
|
|
5
|
+
## [2.20.3] - 2026-02-16
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- **Playwright Cleanup**: After Playwright tests finish, kill any app/server processes that were started for the tests. Prevents orphaned dev servers from lingering after test runs
|
|
9
|
+
|
|
5
10
|
## [2.20.2] - 2026-02-16
|
|
6
11
|
|
|
7
12
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.20.
|
|
3
|
+
"version": "2.20.3",
|
|
4
4
|
"description": "GSD-T: Contract-Driven Development for Claude Code — 41 slash commands with backlog management, impact analysis, test sync, and milestone archival",
|
|
5
5
|
"author": "Tekyz, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -201,6 +201,15 @@ Before any command that involves testing (`gsd-t-execute`, `gsd-t-test-sync`, `g
|
|
|
201
201
|
|
|
202
202
|
Playwright must always be ready before any testing occurs. Do not skip this check. Do not defer setup to "later."
|
|
203
203
|
|
|
204
|
+
### Playwright Cleanup
|
|
205
|
+
|
|
206
|
+
After Playwright tests finish (pass or fail), **kill any app/server processes that were started for the tests**. Playwright often launches a dev server (via `webServer` config or manually). These processes must not be left running:
|
|
207
|
+
1. Check for any dev server processes spawned during the test run
|
|
208
|
+
2. Kill them (e.g., `npx kill-port`, or terminate the process directly)
|
|
209
|
+
3. Verify the port is free before proceeding
|
|
210
|
+
|
|
211
|
+
This applies everywhere Playwright tests are executed: execute, test-sync, verify, quick, wave, debug, complete-milestone, and integrate.
|
|
212
|
+
|
|
204
213
|
## API Documentation Guard (Swagger/OpenAPI)
|
|
205
214
|
|
|
206
215
|
**Every API endpoint MUST be documented in a Swagger/OpenAPI spec. No exceptions.**
|