Skip to content

Commit

Permalink
fix(run): resolve erroneous failures (#3495)
Browse files Browse the repository at this point in the history
  • Loading branch information
fahslaj committed Jan 12, 2023
1 parent 4688f9d commit 24d0d5c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion commands/run/package.json
Expand Up @@ -42,7 +42,7 @@
"@lerna/timer": "file:../../utils/timer",
"@lerna/validation-error": "file:../../core/validation-error",
"fs-extra": "^9.1.0",
"nx": ">=14.8.6 < 16",
"nx": ">=15.4.2 < 16",
"p-map": "^4.0.0"
}
}
8 changes: 7 additions & 1 deletion core/lerna/commands/repair/index.js
Expand Up @@ -35,7 +35,13 @@ class RepairCommand extends Command {
});
});

await repair({ verbose }, lernaMigrations);
// await repair({ verbose }, lernaMigrations);

// fake the success case until nx repair no longer depends on nx.json's existence
// eslint-disable-next-line global-require
require("nx/src/utils/output").output.success({
title: `No changes were necessary. This workspace is up to date!`,
});
}

configureNxOutput() {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 24d0d5c

Please sign in to comment.