Closed brudil closed 7 months ago
Will look in to this. Looks like Author.types.ts is incorrectly translated due to the .t
Author.types.ts
.t
- Snapshot - 2 + Received + 2 - "import { Author } from "./Author.types.js"; + "import { Author } from "./Author.jsypes.jsx"; - import { Book } from "./Book.types.jsx"; + import { Book } from "./Book.jsypes.jsx";
Looks like the extention regexes were accidentally using ? (matching first .t or .ts) instead of $ (.ts at the end)
?
.ts
$
@stephenh Apologies for making you need to do another manual publish :D
Gah! Thank you!
Published as 6.8.1
Will look in to this. Looks like
Author.types.ts
is incorrectly translated due to the.t
Looks like the extention regexes were accidentally using
?
(matching first.t
or.ts
) instead of$
(.ts
at the end)