You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--unstable is deprecated - use granular flags instead
The --unstable flag is no longer being used for new features, and will be removed in a future release. All unstable features that were available using this flag are now available as granular unstable flags, notably:
--unstable-kv
--unstable-cron
Please use these feature flags instead moving forward.
To Reproduce
Steps to reproduce the behavior:
Run supabase init.
Input "y" for the Generate VS Code settings for Deno? [y/N] prompt.
Verify deno.unstable: true in .vscode/settings.json.
Expected behavior
The VS Code configuration uses granular flags for Deno.
Describe the bug
From Deno - Unstable Feature Flags:
Warning
--unstable is deprecated - use granular flags instead
The --unstable flag is no longer being used for new features, and will be removed in a future release. All unstable features that were available using this flag are now available as granular unstable flags, notably:
Please use these feature flags instead moving forward.
To Reproduce
Steps to reproduce the behavior:
supabase init."y"for theGenerate VS Code settings for Deno? [y/N]prompt.deno.unstable: truein.vscode/settings.json.Expected behavior
The VS Code configuration uses granular flags for Deno.
Proposed solution
Replace the following line:
cli/internal/init/templates/.vscode/settings.json
Line 6 in 230be7f
with something similar to:
This array contains all current unstable flags featured on the Deno website, and it should match the previous boolean setting.