@immense/vue-pom-generator 1.0.41 → 1.0.43
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 +22 -26
- package/dist/index.cjs +369 -223
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +370 -224
- package/dist/index.mjs.map +1 -1
- package/dist/plugin/create-vue-pom-generator-plugins.d.ts.map +1 -1
- package/dist/plugin/support/build-plugin.d.ts +12 -2
- package/dist/plugin/support/build-plugin.d.ts.map +1 -1
- package/dist/plugin/support/dev-plugin.d.ts +2 -0
- package/dist/plugin/support/dev-plugin.d.ts.map +1 -1
- package/dist/plugin/support-plugins.d.ts +2 -0
- package/dist/plugin/support-plugins.d.ts.map +1 -1
- package/dist/tests/build-serve-parity.test.d.ts +2 -0
- package/dist/tests/build-serve-parity.test.d.ts.map +1 -0
- package/package.json +1 -1
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,41 +1,37 @@
|
|
|
1
|
-
●
|
|
1
|
+
● ## Highlights
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
-
|
|
6
|
-
|
|
7
|
-
- Aligned dev snapshot options across plugin configurations
|
|
8
|
-
- Added PR release notes preview comments via GitHub Actions
|
|
9
|
-
- Expanded test coverage with new dev plugin options tests
|
|
3
|
+
- Fixed dev-mode POM generation to achieve parity with build mode behavior
|
|
4
|
+
- Added comprehensive regression test suite (284 lines) covering build–serve parity scenarios
|
|
5
|
+
- Enhanced plugin system to ensure consistent POM generation across development and production
|
|
6
|
+
environments
|
|
10
7
|
|
|
11
8
|
## Changes
|
|
12
9
|
|
|
13
10
|
**Bug Fixes**
|
|
14
|
-
-
|
|
15
|
-
|
|
16
|
-
|
|
11
|
+
- Resolved discrepancies between dev-mode and build-mode POM generation (#5)
|
|
12
|
+
|
|
13
|
+
**Testing & Quality**
|
|
14
|
+
- Added build–serve parity regression tests to prevent future inconsistencies (#7)
|
|
15
|
+
- New test file: `tests/build-serve-parity.test.ts` with comprehensive coverage
|
|
17
16
|
|
|
18
|
-
**
|
|
19
|
-
-
|
|
20
|
-
-
|
|
17
|
+
**Plugin System**
|
|
18
|
+
- Extended build plugin functionality with improved POM generation logic
|
|
19
|
+
- Enhanced dev plugin to match build-mode behavior
|
|
20
|
+
- Updated support plugins for better parity handling
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
- Added comprehensive dev plugin options test suite (`tests/dev-plugin-options.test.ts`)
|
|
24
|
-
- Expanded transform tests with additional coverage
|
|
22
|
+
## Breaking Changes
|
|
25
23
|
|
|
26
|
-
|
|
27
|
-
- Updated utility functions for improved scoping logic
|
|
28
|
-
- Refined plugin configuration handling
|
|
24
|
+
None
|
|
29
25
|
|
|
30
26
|
## Pull Requests Included
|
|
31
27
|
|
|
32
|
-
- [#
|
|
33
|
-
|
|
34
|
-
- [#
|
|
35
|
-
|
|
28
|
+
- [#7](https://github.com/immense/vue-pom-generator/pull/7) test: add build–serve parity
|
|
29
|
+
regression tests (by @mayfieldiv)
|
|
30
|
+
- [#5](https://github.com/immense/vue-pom-generator/pull/5) fix: dev-mode POM generation parity
|
|
31
|
+
with build mode (by @mayfieldiv)
|
|
36
32
|
|
|
37
33
|
## Testing
|
|
38
34
|
|
|
39
|
-
Added
|
|
40
|
-
|
|
35
|
+
Added 284 lines of regression tests ensuring build–serve parity. Tests validate consistent POM
|
|
36
|
+
generation behavior across development and production modes.
|
|
41
37
|
|