Allow stdin
for deno bundle
(both for the cli and Deno.bundle()
API)
#30727
quentinadam
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
For the cli, you can get around this with |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
ESBuild allows to pass the input via stdin (see https://esbuild.github.io/api/#stdin), both from the CLI :
And through the API:
This is super handy when bundling a dynamically generated input file (and otherwise requires to first save the file to temporarilly to the disk before bundling).
Is there any plan to enable stdin for
deno bundle
andDeno.bundle()
?Beta Was this translation helpful? Give feedback.
All reactions