-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move from CocoaPod to SPM #9
base: master
Are you sure you want to change the base?
Conversation
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; | ||
IPHONEOS_DEPLOYMENT_TARGET = 8.2; | ||
IPHONEOS_DEPLOYMENT_TARGET = 12.2; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was upping the minimum version necessary for SPM support?
@@ -1,22 +0,0 @@ | |||
# |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why remove cocoapods support?
@@ -49,17 +49,17 @@ class CustomFontTests: XCTestCase { | |||
//MARK: - Dynamic Type - Deprecated in iOS 11 | |||
|
|||
func testOfStyle() { | |||
let font = Futura.medium.of(style: .title3) | |||
let font = Futura.medium.of(textStyle: .title3) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we are removing support for < iOS 12, these tests can be deleted along with the deprecated of(style:)
function.
|
||
import PackageDescription | ||
|
||
let package = Package( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we specify the test target in here?
If you'd like to keep CocoaPod support you can revert this commit: 399099c