Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,11 @@ export function buildArgs(
isCoursierProject?: boolean,
isOutputGraph?: boolean,
) {
// force plain output so we don't have to parse colour codes
let args = ['-Dsbt.log.noformat=true'];

let args = [
'-Dsbt.log.noformat=true', // force plain output so we don't have to parse colour codes
'\'set asciiGraphWidth := 999999999\'' // to ensure no trunctation with deep dependency trees
];
if (sbtArgs) {
args = args.concat(sbtArgs);
}
Expand Down