-
Hi Deno team, the title sums it up. I would like to run a script on deno deploy but the build/deployments fails. Locally it only runs with --unstable and --no-check flags. Is there a possibility to run script on deno deploy with these flags. Kind regards, Leo |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You should ask this at: https://github.com/denoland/deploy_feedback/issues But there is no type checking that occurs on Deploy so |
Beta Was this translation helpful? Give feedback.
You should ask this at: https://github.com/denoland/deploy_feedback/issues
But there is no type checking that occurs on Deploy so
--no-check
is meaningless. If you are trying to access unstable APIs without feature detecting them on Deploy, the code is simply unsupported. There is no concept of an--unstable
flag.