Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bug with getWorkletsLibraryPath #3188

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions package/VisionCamera.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,17 @@ else
end

def Pod::getWorkletsLibraryPath
output = `cd "#{Pod::Config.instance.installation_root.to_s}" && node --print "try { require.resolve('react-native-worklets-core/package.json') } catch(e) { /* returning undefined, if package not found */ }"`
installation_root = Pod::Config.instance.installation_root.to_s
command = "cd \"#{installation_root}\" && node --print \"try { console.log(require.resolve('react-native-worklets-core/package.json')) } catch(e) { console.log('PACKAGE_NOT_FOUND') }\""

if output.strip == "undefined"
output = `#{command}`
lines = output.split("\n").map(&:strip)

if lines.include?('PACKAGE_NOT_FOUND')
return nil
else
return File.dirname(output)
package_line = lines.find { |line| line.include?('react-native-worklets-core/package.json') }
return package_line ? File.dirname(package_line) : nil
end
end

Expand Down
Loading