File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed
integration/templates/react-vite/src Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change @@ -551,6 +551,39 @@ jobs:
551551 echo "--- $(basename $log_file) ---"
552552 cat "$log_file"
553553 done
554+
555+ # Find and print all @clerk package.json files in node_modules (recursively)
556+ echo ""
557+ echo "=========================================="
558+ echo "@clerk packages in node_modules (all)"
559+ echo "=========================================="
560+
561+ if [ -d "$app_dir/node_modules" ]; then
562+ # Find all @clerk packages recursively in node_modules
563+ clerk_packages=$(find "$app_dir/node_modules" -type d -path "*/node_modules/@clerk/*" -maxdepth 10 2>/dev/null | sort -u)
564+
565+ if [ -n "$clerk_packages" ]; then
566+ echo "Found @clerk packages:"
567+ echo "$clerk_packages" | while read -r pkg_path; do
568+ echo " - $pkg_path"
569+ done
570+ echo ""
571+
572+ # Print each package.json
573+ echo "$clerk_packages" | while read -r pkg_path; do
574+ if [ -f "$pkg_path/package.json" ]; then
575+ rel_path=$(echo "$pkg_path" | sed "s|$app_dir/||")
576+ echo ""
577+ echo "--- $rel_path/package.json ---"
578+ cat "$pkg_path/package.json"
579+ fi
580+ done
581+ else
582+ echo "No @clerk packages found in node_modules"
583+ fi
584+ else
585+ echo "No node_modules directory found at: $app_dir/node_modules"
586+ fi
554587 done
555588
556589 - name : Upload test-results
Original file line number Diff line number Diff line change @@ -45,7 +45,6 @@ const Root = () => {
4545 : undefined ,
4646 } }
4747 >
48- here?
4948 < Outlet />
5049 </ ClerkProvider >
5150 ) ;
You can’t perform that action at this time.
0 commit comments