File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,11 @@ type ParserInfo = {
34
34
const FIRST_PARTY_PARSERS : Record < FirstPartyExecutableParser , ParserInfo > = {
35
35
swift : {
36
36
command : async ( cwd , config , mode ) => {
37
- return `swift run --package-path ${ await getSwiftParserDir ( cwd , ( config as any ) . xcodeprojPath ) } figma-swift`
37
+ if ( config . customSwiftCLIPath ) {
38
+ return `${ config . customSwiftCLIPath } `
39
+ } else {
40
+ return `swift run --package-path ${ await getSwiftParserDir ( cwd , ( config as any ) . xcodeprojPath ) } figma-swift`
41
+ }
38
42
} ,
39
43
} ,
40
44
compose : {
Original file line number Diff line number Diff line change @@ -56,6 +56,11 @@ type BaseCodeConnectConfig = {
56
56
* Label to use for the uploaded code examples
57
57
*/
58
58
label ?: string
59
+
60
+ /**
61
+ * Path to the custom Swift parser CLI
62
+ */
63
+ customSwiftCLIPath ?: string
59
64
}
60
65
61
66
export type CodeConnectExecutableParserConfig = BaseCodeConnectConfig & {
You can’t perform that action at this time.
0 commit comments