Storyboard references between two targets in Swift Packages

I'm currently attempting to move some code from my project into a Swift Package. Some of the code is in Swift and some in ObjC, both contain some UIViewControllers that have corresponding storyboards to lay them out. I've gotten it almost all worked out except for the Storyboard references from my Swift target, which are pointing to a storyboard in my ObjC target. I haven't seen any examples that show how to achieve this, any help would be appreciated.
So I rewrote the ObjC ViewController being referenced into Swift and am still seeing the same crash:
Code Block
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Could not find a storyboard named '(class name)' in bundle NSBundle </private/var/containers/Bundle/Application/0499AB80-469B-4E36-83E2-32D51941809A/(project name).app> (loaded)'

So I guess Swift packages can't use storyboard references to other storyboards within the package?
Storyboard references between two targets in Swift Packages
 
 
Q