mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
04a9cc95ac
This commit improves error messages for unstable APIs: - `--unstable-broadcast-channel` - `--unstable-cron` - `--unstable-http` - `--unstable-kv` - `--unstable-temporal` By providing information and hints what went wrong and how the error can be fixed. It reuses the same infra that was added in https://github.com/denoland/deno/pull/21764.
7 lines
228 B
Text
7 lines
228 B
Text
error: Uncaught (in promise) TypeError: Deno.cron is not a function
|
|
Deno.cron();
|
|
^
|
|
at [WILDCARD]cron.ts:1:6
|
|
|
|
info: Deno.cron() is an unstable API.
|
|
hint: Run again with `--unstable-cron` flag to enable this API.
|