Skip to content

Commit 575568e

Browse files
committed
Included custom CLI path for swift tooling to avoid using SPM and instead use a pre compiled binary
1 parent 76c9fcc commit 575568e

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

cli/src/connect/parser_executables.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,11 @@ type ParserInfo = {
3434
const FIRST_PARTY_PARSERS: Record<FirstPartyExecutableParser, ParserInfo> = {
3535
swift: {
3636
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+
}
3842
},
3943
},
4044
compose: {

cli/src/connect/project.ts

+5
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@ type BaseCodeConnectConfig = {
5656
* Label to use for the uploaded code examples
5757
*/
5858
label?: string
59+
60+
/**
61+
* Path to the custom Swift parser CLI
62+
*/
63+
customSwiftCLIPath?: string
5964
}
6065

6166
export type CodeConnectExecutableParserConfig = BaseCodeConnectConfig & {

0 commit comments

Comments
 (0)