Revert back from my fork to Introspect since it's finally been updated

This commit is contained in:
Casper Zandbergen 2021-01-04 17:35:22 +01:00
parent a72743ac45
commit c6cae5aabf
4 changed files with 9 additions and 9 deletions

View File

@ -2,12 +2,12 @@
"object": { "object": {
"pins": [ "pins": [
{ {
"package": "AmzdIntrospect", "package": "Introspect",
"repositoryURL": "https://github.com/Amzd/SwiftUI-Introspect.git", "repositoryURL": "https://github.com/siteline/SwiftUI-Introspect.git",
"state": { "state": {
"branch": null, "branch": null,
"revision": "daa2ee72339db6b7490e29815afaa6e50b1cd208", "revision": "36ecf80429d00a4cd1e81fbfe4655b1d99ebd651",
"version": "0.1.3" "version": "0.1.2"
} }
} }
] ]

View File

@ -20,14 +20,14 @@ let package = Package(
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"), // .package(url: /* package url */, from: "1.0.0"),
.package(name: "AmzdIntrospect", url: "https://github.com/Amzd/SwiftUI-Introspect.git", .upToNextMajor(from: "0.1.3")) .package(name: "Introspect", url: "https://github.com/siteline/SwiftUI-Introspect.git", from: "0.1.2")
], ],
targets: [ targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends on. // Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target( .target(
name: "ScrollViewProxy", name: "ScrollViewProxy",
dependencies: ["AmzdIntrospect"]), dependencies: ["Introspect"]),
// .testTarget( // .testTarget(
// name: "ScrollViewProxyTests", // name: "ScrollViewProxyTests",
// dependencies: ["ScrollViewProxy"]), // dependencies: ["ScrollViewProxy"]),

View File

@ -5,8 +5,8 @@ Pod::Spec.new do |s|
s.license = { type: 'MIT' } s.license = { type: 'MIT' }
s.homepage = 'https://github.com/amzd/ScrollViewProxy' s.homepage = 'https://github.com/amzd/ScrollViewProxy'
s.author = { 'Casper Zandbergen' => 'info@casperzandbergen.nl' } s.author = { 'Casper Zandbergen' => 'info@casperzandbergen.nl' }
s.source = { :git => 'https://github.com/amzd/ScrollViewProxy.git', :tag => s.version.to_s } s.source = { :git => 'https://github.com/Amzd/ScrollViewProxy.git', :tag => s.version.to_s }
s.dependency 'AmzdIntrospect', '>= 0.1.2' s.dependency 'Introspect', '>= 0.1.2'
s.source_files = 'Sources/**/*.swift' s.source_files = 'Sources/**/*.swift'
s.swift_version = '5.1' s.swift_version = '5.1'

View File

@ -1,7 +1,7 @@
// Created by Casper Zandbergen on 01/06/2020. // Created by Casper Zandbergen on 01/06/2020.
// https://twitter.com/amzdme // https://twitter.com/amzdme
import AmzdIntrospect import Introspect
import SwiftUI import SwiftUI
import Combine import Combine