@immense/vue-pom-generator 1.0.68 → 1.0.70
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/RELEASE_NOTES.md +13 -18
- package/package.json +2 -2
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,34 +1,29 @@
|
|
|
1
|
-
●
|
|
1
|
+
● # Release Notes: v1.0.70
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
-
|
|
3
|
+
## Highlights
|
|
4
|
+
|
|
5
|
+
- Relaxed Playwright peer dependency range for broader version compatibility
|
|
6
|
+
- Enhanced packed package smoke testing to validate Playwright peer resolution
|
|
6
7
|
|
|
7
8
|
## Changes
|
|
8
9
|
|
|
9
|
-
**
|
|
10
|
-
-
|
|
11
|
-
path formats (#29)
|
|
12
|
-
- Refactored path comparison logic in Vue plugin to use centralized utility functions
|
|
10
|
+
**Dependencies**
|
|
11
|
+
- Relaxed Playwright peer dependency version range to support more versions
|
|
13
12
|
|
|
14
13
|
**Testing**
|
|
15
|
-
- Added
|
|
16
|
-
|
|
17
|
-
**Code Quality**
|
|
18
|
-
- Extracted 68 lines of path utility logic from `vue-plugin.ts` to `plugin/path-utils.ts`
|
|
19
|
-
- Reduced code duplication in plugin path handling (net -29 lines in vue-plugin.ts)
|
|
14
|
+
- Added smoke check validation for Playwright peer dependency resolution in packed builds
|
|
20
15
|
|
|
21
16
|
## Breaking Changes
|
|
22
17
|
|
|
23
|
-
None
|
|
18
|
+
None
|
|
24
19
|
|
|
25
20
|
## Pull Requests Included
|
|
26
21
|
|
|
27
|
-
- #
|
|
28
|
-
(
|
|
22
|
+
- #30 fix: relax Playwright peer pinning (https://github.com/immense/vue-pom-generator/pull/30)
|
|
23
|
+
(by @dkattan)
|
|
29
24
|
|
|
30
25
|
## Testing
|
|
31
26
|
|
|
32
|
-
|
|
33
|
-
|
|
27
|
+
Added `packed-smoke-check.mjs` script to validate Playwright peer dependency resolution in
|
|
28
|
+
production builds.
|
|
34
29
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@immense/vue-pom-generator",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.70",
|
|
4
4
|
"description": "Injects data-testid attributes for all interactive elements and generates page object models for every page.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"@vue/compiler-dom": ">=3.5",
|
|
63
63
|
"@vue/compiler-sfc": ">=3.5",
|
|
64
64
|
"eslint": ">=9",
|
|
65
|
-
"playwright": "1.59.1",
|
|
65
|
+
"playwright": ">=1.59.1 <2",
|
|
66
66
|
"vite": "^5 || ^6 || ^7"
|
|
67
67
|
},
|
|
68
68
|
"peerDependenciesMeta": {
|