You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/rswift/main.swift
+34-1Lines changed: 34 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,7 @@ struct EnvironmentKeys {
65
65
66
66
// Options grouped in struct for readability
67
67
structCommanderOptions{
68
+
staticletgenerators=Option("generators", default:"", description:"Only run specified generators, comma seperated")
68
69
staticletuiTest=Option("generateUITestFile", default:"", description:"Output path for an extra generated file that contains resources commonly used in UI tests such as accessibility identifiers")
69
70
staticletimportModules=Option("import", default:"", description:"Add extra modules as import in the generated file, comma seperated")
70
71
staticletaccessLevel=Option("accessLevel", default:AccessLevel.internalLevel, description:"The access level [public|internal] to use for the generated R-file")
@@ -77,15 +78,35 @@ struct CommanderArguments {
77
78
staticletoutputPath=Argument<String>("outputPath", description:"Output path for the generated file")
0 commit comments