CLI tool that provides information about a given Swift Package product, such as a measurament of its binary size impact.
It’s built on top of Swift Argument Parser.
Usage
OVERVIEW: A tool for analyzing Swift Packages
Provides valuable information about a given Swift Package,
that can be used in your favor when deciding whether to
adopt or not a Swift Package as a dependency on your app.
USAGE: swift-package-info <subcommand>
OPTIONS:
--version Show the version.
-h, --help Show help information.
SUBCOMMANDS:
binary-size Estimated binary size of a Swift Package product.
platforms Shows platforms supported b a Package product.
dependencies List dependencies of a Package product.
full-analyzes (default) All available information about a Swift Package product.
See 'swift-package-info help <subcommand>' for detailed help.
Its methodology is inspired by cocoapods-size, and thus works by comparing archives with no bitcode and ARM64 arch.
Such strategy has proven to be consistent with the size added to iOS apps downloaded and installed via TestFlight.
Swift Package Info
CLI tool that provides information about a given Swift Package product, such as a measurament of its binary size impact. It’s built on top of Swift Argument Parser.
Usage
Examples
Run a full analyzes
Check supported platforms (sub command)
See binary size of a local pacakge (e.g. under development framework)
Report
A custom report strategy can be passed via the
report
argument (check –help for supported values)Installation
mint install marinofelipe/swift-package-info
Building
Build from Swift Package Manager
swift build
in the top level directory.build/debug/swift-package-info
swift run
Running tests
Run from Xcode
swift-package-info
scheme customWorkingDirectoryRun from command line
swift test --build-path PROJECT_DIR
Dependencies
Binary size report
Its methodology is inspired by cocoapods-size, and thus works by comparing archives with no bitcode and ARM64 arch. Such strategy has proven to be consistent with the size added to iOS apps downloaded and installed via TestFlight.
Thanks
Special thanks to @unnamedd for sharing his experience with swift-tools-support-core and on how to build a pretty 👌 report.
Contributions
Swift Package Info is fully open and your contributions are more than welcome.