fix: removed TISwiftUIElements lib and moved components to TISwiftUICore

This commit is contained in:
Nikita Semenov 2022-07-26 13:53:25 +03:00
parent 8138291153
commit ffa66048b0
6 changed files with 2 additions and 24 deletions

View File

@ -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"),

View File

@ -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

View File

@ -1,5 +0,0 @@
# TISwiftUIElements
# Installation via SPM
You can install this framework as a target of LeadKit.

View File

@ -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