We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$ deno bundle mod.ts does not require the --unstable flag, however, if I use $ deno run --allow-read my_script.ts where my_script.ts` contains
$ deno bundle mod.ts
--unstable
$ deno run --allow-read my_script.ts
const [, source] = await Deno.bundle("./mod.ts"); console.log(source);
I need the --unstable flag.
The text was updated successfully, but these errors were encountered:
This is correct, programmatic access to the TS compiler APIs is still unstable. We have not finalized the APIs yet.
Sorry, something went wrong.
Thank you.
In fact we will be breaking those APIs: #4752
No branches or pull requests
$ deno bundle mod.ts
does not require the--unstable
flag, however, if I use$ deno run --allow-read my_script.ts
where my_script.ts` containsI need the
--unstable
flag.The text was updated successfully, but these errors were encountered: