From 9df6f1e9bf44424f07e516535c4b0538b411bd6a Mon Sep 17 00:00:00 2001 From: Jan Richter Date: Wed, 11 Feb 2026 13:24:08 +0100 Subject: [PATCH] chore: update lib version in guide Signed-off-by: Jan Richter --- docs/overlay/examples/basic-plugin.md | 4 ++-- docs/overlay/examples/tech-radar.md | 4 ++-- docs/overlay/test-structure/directory-layout.md | 4 ++-- docs/overlay/tutorials/new-workspace.md | 5 +++-- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/docs/overlay/examples/basic-plugin.md b/docs/overlay/examples/basic-plugin.md index 3aee77e..0bdc8dc 100644 --- a/docs/overlay/examples/basic-plugin.md +++ b/docs/overlay/examples/basic-plugin.md @@ -60,14 +60,14 @@ workspaces//e2e-tests/ }, "devDependencies": { "@eslint/js": "^9.39.2", - "@playwright/test": "^1.57.0", + "@playwright/test": "1.57.0", "@types/node": "^24.10.1", "dotenv": "^16.4.7", "eslint": "^9.39.2", "eslint-plugin-check-file": "^3.3.1", "eslint-plugin-playwright": "^2.4.0", "prettier": "^3.7.4", - "rhdh-e2e-test-utils": "1.1.6", + "rhdh-e2e-test-utils": "1.1.8", "typescript": "^5.9.3", "typescript-eslint": "^8.50.0" } diff --git a/docs/overlay/examples/tech-radar.md b/docs/overlay/examples/tech-radar.md index fe7d83d..ac05d9f 100644 --- a/docs/overlay/examples/tech-radar.md +++ b/docs/overlay/examples/tech-radar.md @@ -63,14 +63,14 @@ workspaces/tech-radar/e2e-tests/ }, "devDependencies": { "@eslint/js": "^9.39.2", - "@playwright/test": "^1.57.0", + "@playwright/test": "1.57.0", "@types/node": "^24.10.1", "dotenv": "^16.4.7", "eslint": "^9.39.2", "eslint-plugin-check-file": "^3.3.1", "eslint-plugin-playwright": "^2.4.0", "prettier": "^3.7.4", - "rhdh-e2e-test-utils": "1.1.6", + "rhdh-e2e-test-utils": "1.1.8", "typescript": "^5.9.3", "typescript-eslint": "^8.50.0" } diff --git a/docs/overlay/test-structure/directory-layout.md b/docs/overlay/test-structure/directory-layout.md index ebccb4f..8a071d7 100644 --- a/docs/overlay/test-structure/directory-layout.md +++ b/docs/overlay/test-structure/directory-layout.md @@ -60,14 +60,14 @@ Defines the test package with dependencies and scripts: }, "devDependencies": { "@eslint/js": "^9.39.2", - "@playwright/test": "^1.57.0", + "@playwright/test": "1.57.0", "@types/node": "^24.10.1", "dotenv": "^16.4.7", "eslint": "^9.39.2", "eslint-plugin-check-file": "^3.3.1", "eslint-plugin-playwright": "^2.4.0", "prettier": "^3.7.4", - "rhdh-e2e-test-utils": "1.1.6", + "rhdh-e2e-test-utils": "1.1.8", "typescript": "^5.9.3", "typescript-eslint": "^8.50.0" } diff --git a/docs/overlay/tutorials/new-workspace.md b/docs/overlay/tutorials/new-workspace.md index 25fb9fe..8a1f0ab 100644 --- a/docs/overlay/tutorials/new-workspace.md +++ b/docs/overlay/tutorials/new-workspace.md @@ -56,14 +56,14 @@ Create `package.json` with the following content: }, "devDependencies": { "@eslint/js": "^9.39.2", - "@playwright/test": "^1.57.0", + "@playwright/test": "1.57.0", "@types/node": "^24.10.1", "dotenv": "^16.4.7", "eslint": "^9.39.2", "eslint-plugin-check-file": "^3.3.1", "eslint-plugin-playwright": "^2.4.0", "prettier": "^3.7.4", - "rhdh-e2e-test-utils": "1.1.6", + "rhdh-e2e-test-utils": "", "typescript": "^5.9.3", "typescript-eslint": "^8.50.0" } @@ -71,6 +71,7 @@ Create `package.json` with the following content: ``` Replace `` with your plugin name. +Replate `` with the latest available version of this library. ## Step 4: Create Configuration Files