File tree Expand file tree Collapse file tree 2 files changed +0
-6
lines changed
packages/host/src/node/cli Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -501,12 +501,7 @@ export async function linkXcframework({
501501
502502 const info = await readXcframeworkInfo ( path . join ( modulePath , "Info.plist" ) ) ;
503503
504- // TODO: Assert the existence of environment variables injected by Xcodebuild
505- // TODO: Pick and assert the existence of the right framework slice based on the environment variables
506- // TODO: Link the framework into the output path
507-
508504 const expectedSlice = determineFrameworkSlice ( ) ;
509-
510505 const framework = info . AvailableLibraries . find ( ( framework ) => {
511506 return (
512507 expectedSlice . platform === framework . SupportedPlatform &&
Original file line number Diff line number Diff line change 11import assert from "node:assert" ;
22import path from "node:path" ;
33import fs from "node:fs" ;
4- import cp from "node:child_process" ;
54
65// Using xmldom here because this is what @expo /plist uses internally and we might as well re-use it here.
76// Types come from packages/host/types/xmldom.d.ts (path mapping in tsconfig.node.json) to avoid pulling in lib "dom".
You can’t perform that action at this time.
0 commit comments