I want to migrate my teams and their modules to swift package manager.
- Some of my dependencies do not support it support SPM (missing a package.swift file)
- There are dependencies that also have other dependencies that may or may not already support swift package manager.
- Each dependency will add support for SPM eventually, but it may happen at differing times.
As an interim solution there will be some time where projects will be importing both cocoapods and swift packages at the same time.
Is it possible for a package.swift file to include a cocoapod as a dependency?
If not, could I create a separate swift package with a project that installs the cocoapod into the 'pods' folder, and then include a path to that as a source of the package?
Are there any other strategies for making this switch in package managers?