dev-cmd/typecheck: relax typing for msgpack

This commit is contained in:
Bo Anderson 2022-05-30 02:36:07 +01:00
parent c051cec1ed
commit cbba6af505
No known key found for this signature in database
GPG Key ID: 3DB94E204E137D65

View File

@ -56,7 +56,10 @@ module Homebrew
"webrobots", # RBI file is bugged
"sorbet-static-and-runtime", # Unnecessary RBI - remove this entry with Tapioca 0.8
]
tapioca_args = ["--exclude", *excluded_gems]
typed_overrides = [
"msgpack:false", # Investigate removing this with Tapioca 0.8
]
tapioca_args = ["--exclude", *excluded_gems, "--typed-overrides", *typed_overrides]
tapioca_args << "--all" if args.all?
ohai "Updating Tapioca RBI files..."