Swiftui2Lvn.CLI (swiftui_2_lvn v0.1.6)
View SourceSimple CLI for SwiftUI to LiveViewNative transformer. Reads SwiftUI code from stdin, file path, or command line args and outputs LVN code to stdout.
Usage
# From stdin
echo "VStack { Text('Hello') }" | swiftui2lvn
# From file
swiftui2lvn --file path/to/swiftui_code.swift
swiftui2lvn -f path/to/swiftui_code.swift
# From command line args
swiftui2lvn "VStack { Text('Hello') }"