V15: Block package should not import from itself (#18902)

* fix: avoids circular dependencies by realising the 'block' package was importing from itself

* chore: lowers requirement to 9 after fixes

* chore: removes unused file
This commit is contained in:
Jacob Overgaard
2025-04-01 14:02:35 +02:00
committed by GitHub
parent 19e873c7ad
commit bf89eae07f
4 changed files with 14 additions and 11 deletions

View File

@@ -52,7 +52,7 @@ if (circular.length) {
*/
// TODO: Remove this check and set an exit with argument 1 when we have fixed all circular dependencies.
if (circular.length > 11) {
if (circular.length > 9) {
process.exit(1);
} else {
process.exit(0);