Skip to content

Commit

Permalink
Relaxing pnpm and yarn checks / logging (#259)
Browse files Browse the repository at this point in the history
It is not an error if we do not find pnpm or yarn as we will always default back to npm.
  • Loading branch information
max-leuthaeuser authored Feb 23, 2023
1 parent 857c2a2 commit dba1916
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ trait TranspilingEnvironment {
logger.debug(s"\t+ pnpm is available: $result")
true
case Failure(_) =>
logger.error("\t- pnpm is not installed. Transpiling sources will not be available.")
logger.debug("\t- pnpm is not installed.")
false
}
}
Expand All @@ -91,7 +91,7 @@ trait TranspilingEnvironment {
logger.debug(s"\t+ yarn is available: $result")
true
case Failure(_) =>
logger.error("\t- yarn is not installed. Transpiling sources will not be available.")
logger.debug("\t- yarn is not installed.")
false
}
}
Expand Down

0 comments on commit dba1916

Please sign in to comment.