├── .gitignore ├── LICENSE ├── Package.swift ├── README.md ├── Sources ├── CommandRunner.swift ├── Config.swift ├── ExportError.swift ├── Logger.swift ├── String+terminal.swift ├── SwiftExport.swift └── URL+filePath.swift ├── export.yml ├── hardened.entitlements └── swift-export.pkg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklefebvre/swift-export/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklefebvre/swift-export/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklefebvre/swift-export/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklefebvre/swift-export/HEAD/README.md -------------------------------------------------------------------------------- /Sources/CommandRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklefebvre/swift-export/HEAD/Sources/CommandRunner.swift -------------------------------------------------------------------------------- /Sources/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklefebvre/swift-export/HEAD/Sources/Config.swift -------------------------------------------------------------------------------- /Sources/ExportError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklefebvre/swift-export/HEAD/Sources/ExportError.swift -------------------------------------------------------------------------------- /Sources/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklefebvre/swift-export/HEAD/Sources/Logger.swift -------------------------------------------------------------------------------- /Sources/String+terminal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklefebvre/swift-export/HEAD/Sources/String+terminal.swift -------------------------------------------------------------------------------- /Sources/SwiftExport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklefebvre/swift-export/HEAD/Sources/SwiftExport.swift -------------------------------------------------------------------------------- /Sources/URL+filePath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklefebvre/swift-export/HEAD/Sources/URL+filePath.swift -------------------------------------------------------------------------------- /export.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklefebvre/swift-export/HEAD/export.yml -------------------------------------------------------------------------------- /hardened.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklefebvre/swift-export/HEAD/hardened.entitlements -------------------------------------------------------------------------------- /swift-export.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franklefebvre/swift-export/HEAD/swift-export.pkg --------------------------------------------------------------------------------