mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-21 16:28:26 +00:00
Summary: ## Changes in this pull request Add Package.swift file to support Swift Package manager. Issue fixed: #925 ### Checklist - [x] All tests pass. Demo project builds and runs. - [ ] I added tests, an experiment, or detailed why my change isn't tested. - [ ] I added an entry to the `CHANGELOG.md` for any breaking changes, enhancements, or bug fixes. - [ ] I have reviewed the [contributing guide](https://github.com/Instagram/IGListKit/blob/master/.github/CONTRIBUTING.md) Pull Request resolved: https://github.com/Instagram/IGListKit/pull/1323 Differential Revision: D15437799 Pulled By: lorixx fbshipit-source-id: bb1b008c4f39d35fc1194e91be617b0950f05b2f
15 lines
291 B
Swift
15 lines
291 B
Swift
// swift-tools-version:4.2
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "IGListKit",
|
|
products: [
|
|
.library(name: "IGListKit", targets: ["IGListKit"])
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "IGListKit",
|
|
path: "Source"
|
|
)
|
|
]
|
|
)
|