You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You look for names matching the export but only one level deep, so if c were in app/a/b/index.ts it would work, but it doesn't work for app/a/b/c/index.ts
The text was updated successfully, but these errors were encountered:
I think your assumption is correct. I'd say a possible solution is to extract the following logic into a separate function and recursively process the result until there's no { type: 'whole' } in the array.
Hey and thanks for all the hard work ! 💪
I have an issue where deeply nested
*
exports won't workFor example:
I think this is due to this part:
tsr/lib/util/edit.ts
Lines 439 to 440 in 50b9261
You look for names matching the export but only one level
deep
, so ifc
were inapp/a/b/index.ts
it would work, but it doesn't work forapp/a/b/c/index.ts
The text was updated successfully, but these errors were encountered: