deno.jsonc "unstable" format?
I added this entry to my
deno.jsonc
:
…and stopped passing --unstable
to the CLI, but now I'm getting errors:
What's the proper syntax? The schema only has:
…and I couldn't figure what the values are expected to be from reading the source code either.
The feature name is correct (see screenshot), but that doesn't seem to work.6 Replies
@bartlomieju is that a bug? This should work acording to the code I'm reading in the feature checker right now.
Oh wow even
--unstable-broadcast-channel
passed to the CLI doesn't work 😮
Well, I'll just revert to passing --unstable
everywhere then…@jcayzac could you oen an issue?
GitHub
Granular unstable feature flags appear ignored · Issue #21434 · den...
Version: Deno 1.38.3 I added this entry to my deno.jsonc: "unstable": [ "broadcast-channel", "ffi", "fs", "kv", "net", "http", ...
That seems like a bug. Thanks for reporting
@bartlomieju @crowlKats I think I fixed https://github.com/denoland/deno/pull/21466, if you have time to review it
Thanks!