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
Before the release of the 147411e canary, publishing worked fine
After the release of the said version npx jsr publish fails to change the naked imports to npm: specifiers that in turn causes a graphError failure.
Downloading JSR binary...
[00:00] [################################################>-] 37.5 MiB/38.3 MiB
Checking for slow types in the public API...
Publishing @jerni/publish-test@0.0.3 ...
error: Failed to publish @jerni/publish-test@0.0.3
Caused by:
Failed to publish @jerni/publish-test at 0.0.3: failed to build module graph: Module not found "file:///src/lodash".
at file:///src/index.ts:1:15
Child process exited with: 1
It works when I manually change the import in src/index.ts to
import_from"npm:lodash@^4.17.21";
I also verified the previous version works:
# revert to last versioncd node_modules/jsr/.download/147411e64b22fe74cb258125acab83f9182c9f81/darwin/
wget https://dl.deno.land/canary/dd6d19e12051fac2ea5639f621501f4710a1b8e1/deno-aarch64-apple-darwin.zip
unzip deno-aarch64-apple-darwin.zip
The text was updated successfully, but these errors were encountered:
Version: Deno canary 147411e
Before the release of the 147411e canary, publishing worked fine
After the release of the said version
npx jsr publish
fails to change the naked imports tonpm:
specifiers that in turn causes agraphError
failure.repro: https://github.com/tungv/jsr-publish-fails-repro
Error message:
It works when I manually change the import in
src/index.ts
toI also verified the previous version works:
The text was updated successfully, but these errors were encountered: