fix: removed TISwiftUIElements lib and moved components to TISwiftUICore
This commit is contained in:
parent
8138291153
commit
ffa66048b0
|
|
@ -14,7 +14,6 @@ let package = Package(
|
|||
|
||||
// MARK: - SwiftUI
|
||||
.library(name: "TISwiftUICore", targets: ["TISwiftUICore"]),
|
||||
.library(name: "TISwiftUIElements", targets: ["TISwiftUIElements"]),
|
||||
|
||||
// MARK: - Utils
|
||||
.library(name: "TISwiftUtils", targets: ["TISwiftUtils"]),
|
||||
|
|
@ -56,7 +55,6 @@ let package = Package(
|
|||
// MARK: - SwiftUI
|
||||
|
||||
.target(name: "TISwiftUICore", path: "TISwiftUICore/Sources"),
|
||||
.target(name: "TISwiftUIElements", path: "TISwiftUIElements/Sources"),
|
||||
|
||||
// MARK: - Utils
|
||||
.target(name: "TISwiftUtils", path: "TISwiftUtils/Sources"),
|
||||
|
|
|
|||
|
|
@ -12,4 +12,6 @@ Pod::Spec.new do |s|
|
|||
|
||||
s.source_files = s.name + '/Sources/**/*'
|
||||
|
||||
s.dependency 'TIUIElements', s.version.to_s
|
||||
s.dependency 'TISwiftUtils', s.version.to_s
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,5 +0,0 @@
|
|||
# TISwiftUIElements
|
||||
|
||||
# Installation via SPM
|
||||
|
||||
You can install this framework as a target of LeadKit.
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'TISwiftUIElements'
|
||||
s.version = '1.24.0'
|
||||
s.summary = 'Bunch of useful protocols and views.'
|
||||
s.homepage = 'https://github.com/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru' }
|
||||
s.source = { :git => 'https://github.com/TouchInstinct/LeadKit.git', :tag => s.version.to_s }
|
||||
|
||||
s.ios.deployment_target = '13.0'
|
||||
s.swift_versions = ['5.3']
|
||||
|
||||
s.source_files = s.name + '/Sources/**/*'
|
||||
|
||||
s.dependency 'TIUIElements', s.version.to_s
|
||||
s.dependency 'TISwiftUtils', s.version.to_s
|
||||
end
|
||||
Loading…
Reference in New Issue