Skip to content

Commit 4f155b2

Browse files
committed
fix: replace old --skip-fable-library usage with the new --force-fable-library
1 parent f64aad9 commit 4f155b2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Fable.Build/Quicktest/Core.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ type QuicktestConfig =
2020
}
2121

2222
let genericQuicktest (config: QuicktestConfig) (args: string list) =
23-
let skipFableLibrary = args |> List.contains "--skip-fable-library"
23+
let forceFableLibrary = args |> List.contains "--force-fable-library"
2424
let isWatch = args |> List.contains "--watch"
2525

26-
config.FableLibBuilder.Run(skipFableLibrary)
26+
config.FableLibBuilder.Run(forceFableLibrary)
2727

2828
let appendRunMode (cmdLine: CmdLine) =
2929
match config.RunMode with

0 commit comments

Comments
 (0)