Migrate the monorepo tooling for the 3.0.0 release - #541
Open
OleksiiZubko wants to merge 1 commit into
Open
Conversation
OleksiiZubko
force-pushed
the
version_3
branch
10 times, most recently
from
July 28, 2026 11:34
5b85862 to
3c34fdb
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #541 +/- ##
================================================
+ Coverage 90.1118% 90.9926% +0.8809%
================================================
Files 82 86 +4
Lines 2953 2831 -122
Branches 333 389 +56
================================================
- Hits 2661 2576 -85
+ Misses 136 108 -28
+ Partials 156 147 -9 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Migrate the monorepo tooling: npm workspaces instead of yarn and lerna, vitest instead of mocha, nyc and karma, eslint instead of tslint, and current versions of the GitHub actions and of Java for MockServer. Replace the six per-package prettier configs with one at the root, pinning the trailing comma style that prettier 3 would otherwise have changed. Drop the properties-reader dependency, which leaves the authentication package with no third-party dependencies at all, and report the body of a failed token request so the correlationId reaches the caller. Remove catch handlers that only re-rejected, write the lcov paths from the monorepo root so the six package reports stop colliding, keep the oauth-requester entry point out of coverage, and cover the error paths and branches that no test reached. Two tests that asserted inside a `setTimeout` firing after the test had ended now drive the clock with fake timers. Relates-To: MAJOR See also: HERESUP-71374 Signed-off-by: Oleksii Zubko <ext-oleksii.zubko@here.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Drop Node <24, remove Yarn/Lerna, modernize tooling.
Migrate the monorepo tooling: npm workspaces instead of yarn and
lerna, vitest instead of mocha, nyc and karma, eslint instead of
tslint, and current versions of the GitHub actions and of Java for MockServer.
Drop the properties-reader dependency, which leaves the
authentication package with no third-party dependencies at all, and
report the body of a failed token request so the correlationId
reaches the caller.
Remove the catch handlers that only re-rejected, write the lcov
paths from the monorepo root so the six package reports stop
colliding, keep the oauth-requester entry point out of coverage,
and cover the error paths that no test reached.
Relates-To: MAJOR
See also: HERESUP-71374