-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(run-lifecycle): Remove repetitive error logging
- Loading branch information
Showing
3 changed files
with
43 additions
and
18 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ test("lerna publish lifecycle scripts stop on non-zero exit", async () => { | |
const json = await fs.readJson(rootManifest); | ||
|
||
json.scripts.preversion = "echo boom && exit 123"; | ||
// console.log(json); | ||
|
||
await fs.writeJson(rootManifest, json); | ||
await gitAdd(cwd, rootManifest); | ||
|
@@ -56,11 +55,7 @@ lerna info Looking for changed packages since initial commit. | |
lerna info auto-confirmed | ||
lerna info lifecycle [email protected]~preversion: [email protected] | ||
lerna info lifecycle [email protected]~preversion: Failed to exec preversion script | ||
lerna ERR! lifecycle "preversion" errored in "lifecycle", ejecting | ||
lerna ERR! exited 123 in 'lifecycle' | ||
lerna ERR! exited 123 in 'lifecycle' | ||
lerna ERR! exited 123 in 'lifecycle' | ||
lerna ERR! exited 123 in 'lifecycle' | ||
lerna ERR! lifecycle "preversion" errored in "lifecycle", exiting 123 | ||
`); | ||
} | ||
|
This file contains 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
This file contains 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