Would you like to publish in JSR? #565
-
Hi! When using I would be very happy if you could publish it to jsr where deno is developed! |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
-
We can use dependencies without installing on Deno, a simple approach would be to use Poku with import { assert } from 'npm:poku';
assert(true, '🐷'); import { assert } from 'https://esm.sh/poku';
assert(true, '🐷'); Also, we can running deno run --allow-read --allow-env --allow-run npm:poku So far, using the JSR isn't viable. Let's see the JSR's future: @yumafuu, I'll add this discussion to the documentation. Thank you for your contribution 🤝 |
Beta Was this translation helpful? Give feedback.
We can use dependencies without installing on Deno, a simple approach would be to use Poku with
npm:poku
or esm.sh, for example:Also, we can running
poku
command withnpm:poku
without adding it to dependencies:So far, using the JSR isn't viable. Let's see the JSR's future:
@yumafuu, I'll add this discussion to the documentation. Thank you for your contribution 🤝