@featurevisor/core 2.12.0 → 2.14.0

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.
Files changed (92) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/coverage/clover.xml +1663 -596
  3. package/coverage/coverage-final.json +24 -6
  4. package/coverage/lcov-report/builder/allocator.ts.html +1 -1
  5. package/coverage/lcov-report/builder/buildScopedConditions.ts.html +1 -1
  6. package/coverage/lcov-report/builder/buildScopedDatafile.ts.html +1 -1
  7. package/coverage/lcov-report/builder/buildScopedSegments.ts.html +1 -1
  8. package/coverage/lcov-report/builder/index.html +38 -8
  9. package/coverage/lcov-report/builder/mutateVariables.ts.html +400 -0
  10. package/coverage/lcov-report/builder/mutator.ts.html +796 -0
  11. package/coverage/lcov-report/builder/revision.ts.html +1 -1
  12. package/coverage/lcov-report/builder/traffic.ts.html +1 -1
  13. package/coverage/lcov-report/config/index.html +116 -0
  14. package/coverage/lcov-report/config/projectConfig.ts.html +676 -0
  15. package/coverage/lcov-report/datasource/adapter.ts.html +235 -0
  16. package/coverage/lcov-report/datasource/datasource.ts.html +862 -0
  17. package/coverage/lcov-report/datasource/filesystemAdapter.ts.html +1354 -0
  18. package/coverage/lcov-report/datasource/index.html +161 -0
  19. package/coverage/lcov-report/datasource/index.ts.html +94 -0
  20. package/coverage/lcov-report/index.html +83 -38
  21. package/coverage/lcov-report/linter/attributeSchema.ts.html +175 -0
  22. package/coverage/lcov-report/linter/checkCircularDependency.ts.html +220 -0
  23. package/coverage/lcov-report/linter/checkPercentageExceedingSlot.ts.html +268 -0
  24. package/coverage/lcov-report/linter/conditionSchema.ts.html +38 -38
  25. package/coverage/lcov-report/linter/featureSchema.ts.html +956 -485
  26. package/coverage/lcov-report/linter/groupSchema.ts.html +226 -0
  27. package/coverage/lcov-report/linter/index.html +139 -19
  28. package/coverage/lcov-report/linter/lintProject.ts.html +1840 -0
  29. package/coverage/lcov-report/linter/mutationNotation.ts.html +1309 -0
  30. package/coverage/lcov-report/linter/printError.ts.html +238 -0
  31. package/coverage/lcov-report/linter/schema.ts.html +116 -116
  32. package/coverage/lcov-report/linter/segmentSchema.ts.html +5 -5
  33. package/coverage/lcov-report/linter/testSchema.ts.html +550 -0
  34. package/coverage/lcov-report/list/index.html +1 -1
  35. package/coverage/lcov-report/list/matrix.ts.html +1 -1
  36. package/coverage/lcov-report/parsers/index.html +20 -5
  37. package/coverage/lcov-report/parsers/index.ts.html +151 -0
  38. package/coverage/lcov-report/parsers/json.ts.html +2 -2
  39. package/coverage/lcov-report/parsers/yml.ts.html +6 -6
  40. package/coverage/lcov-report/tester/cliFormat.ts.html +103 -0
  41. package/coverage/lcov-report/tester/helpers.ts.html +1 -1
  42. package/coverage/lcov-report/tester/index.html +20 -5
  43. package/coverage/lcov-report/utils/git.ts.html +481 -0
  44. package/coverage/lcov-report/utils/index.html +116 -0
  45. package/coverage/lcov.info +3253 -1214
  46. package/lib/builder/buildDatafile.js +8 -3
  47. package/lib/builder/buildDatafile.js.map +1 -1
  48. package/lib/builder/mutateVariables.d.ts +14 -0
  49. package/lib/builder/mutateVariables.js +90 -0
  50. package/lib/builder/mutateVariables.js.map +1 -0
  51. package/lib/builder/mutateVariables.spec.d.ts +1 -0
  52. package/lib/builder/mutateVariables.spec.js +1045 -0
  53. package/lib/builder/mutateVariables.spec.js.map +1 -0
  54. package/lib/builder/mutator.d.ts +20 -0
  55. package/lib/builder/mutator.js +223 -0
  56. package/lib/builder/mutator.js.map +1 -0
  57. package/lib/builder/mutator.spec.d.ts +1 -0
  58. package/lib/builder/mutator.spec.js +368 -0
  59. package/lib/builder/mutator.spec.js.map +1 -0
  60. package/lib/linter/featureSchema.d.ts +7 -7
  61. package/lib/linter/featureSchema.js +138 -62
  62. package/lib/linter/featureSchema.js.map +1 -1
  63. package/lib/linter/featureSchema.spec.js +150 -0
  64. package/lib/linter/featureSchema.spec.js.map +1 -1
  65. package/lib/linter/lintProject.d.ts +17 -1
  66. package/lib/linter/lintProject.js +191 -198
  67. package/lib/linter/lintProject.js.map +1 -1
  68. package/lib/linter/lintProject.spec.d.ts +1 -0
  69. package/lib/linter/lintProject.spec.js +86 -0
  70. package/lib/linter/lintProject.spec.js.map +1 -0
  71. package/lib/linter/mutationNotation.d.ts +47 -0
  72. package/lib/linter/mutationNotation.js +381 -0
  73. package/lib/linter/mutationNotation.js.map +1 -0
  74. package/lib/linter/mutationNotation.spec.d.ts +1 -0
  75. package/lib/linter/mutationNotation.spec.js +549 -0
  76. package/lib/linter/mutationNotation.spec.js.map +1 -0
  77. package/lib/linter/printError.d.ts +7 -0
  78. package/lib/linter/printError.js +30 -15
  79. package/lib/linter/printError.js.map +1 -1
  80. package/package.json +2 -2
  81. package/src/builder/buildDatafile.ts +29 -3
  82. package/src/builder/mutateVariables.spec.ts +1134 -0
  83. package/src/builder/mutateVariables.ts +105 -0
  84. package/src/builder/mutator.spec.ts +413 -0
  85. package/src/builder/mutator.ts +237 -0
  86. package/src/linter/featureSchema.spec.ts +182 -0
  87. package/src/linter/featureSchema.ts +254 -97
  88. package/src/linter/lintProject.spec.ts +115 -0
  89. package/src/linter/lintProject.ts +256 -254
  90. package/src/linter/mutationNotation.spec.ts +642 -0
  91. package/src/linter/mutationNotation.ts +408 -0
  92. package/src/linter/printError.ts +40 -16
package/CHANGELOG.md CHANGED
@@ -3,6 +3,28 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [2.14.0](https://github.com/featurevisor/featurevisor/compare/v2.13.0...v2.14.0) (2026-02-24)
7
+
8
+
9
+ ### Features
10
+
11
+ * variable mutations ([#392](https://github.com/featurevisor/featurevisor/issues/392)) ([ab0b2aa](https://github.com/featurevisor/featurevisor/commit/ab0b2aa6fe250707ce46fbdd97b1254723e1d4e1))
12
+
13
+
14
+
15
+
16
+
17
+ # [2.13.0](https://github.com/featurevisor/featurevisor/compare/v2.12.0...v2.13.0) (2026-02-23)
18
+
19
+
20
+ ### Features
21
+
22
+ * get linting output as JSON from CLI ([#391](https://github.com/featurevisor/featurevisor/issues/391)) ([365dd1d](https://github.com/featurevisor/featurevisor/commit/365dd1d9bfc46dfee6a76804a9803a93beee2609))
23
+
24
+
25
+
26
+
27
+
6
28
  # [2.12.0](https://github.com/featurevisor/featurevisor/compare/v2.11.0...v2.12.0) (2026-02-21)
7
29
 
8
30