I'm setting up SwiftGen in the project and want to create a nested enum of assets like shown in the docs...
https://github.com/SwiftGen/SwiftGen#asset-catalog
I've tried multiple ways to set up the assets catalog and different config options in the yml but I can't get the output to look like it does in the readme with multiple namespaces...
All I get is a single flat enum with all the images in it...
public enum Asset {
public static let arrowBack = ImageAsset(name: "arrow-back")
public static let arrowBottomRight = ImageAsset(name: "arrow-bottom-right")
public static let arrowClockwise = ImageAsset(name: "arrow-clockwise")
public static let arrowDouble = ImageAsset(name: "arrow-double")
public static let arrowDown = ImageAsset(name: "arrow-down")
public static let arrowTopRight = ImageAsset(name: "arrow-top-right")
etc...
How do I set up SwiftGen (or the xcassets file) to generate the nested enum as shown in the docs.
Thanks