mirror of
https://github.com/denoland/deno.git
synced 2025-08-03 18:38:33 +00:00
FUTURE(ext/fs): stabilize file system APIs (#23968)
Closes https://github.com/denoland/deno/issues/23906 --------- Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>
This commit is contained in:
parent
506c275053
commit
1667e28a15
5 changed files with 37 additions and 0 deletions
|
@ -1754,6 +1754,13 @@ impl CliOptions {
|
|||
.unwrap_or_default();
|
||||
|
||||
from_config_file.extend_from_slice(&self.flags.unstable_config.features);
|
||||
|
||||
if *DENO_FUTURE {
|
||||
from_config_file.extend_from_slice(&[
|
||||
deno_runtime::deno_fs::UNSTABLE_FEATURE_NAME.to_string(),
|
||||
]);
|
||||
}
|
||||
|
||||
from_config_file
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue