diff options
author | Valentin Anger <syrupthinker@gryphno.de> | 2020-09-11 22:40:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-11 22:40:48 +0200 |
commit | e3319f34a6ece36eab3138eae83c8d0e18fcc07c (patch) | |
tree | c194f400d91d11b9a29416e1697d00d8cf2e3628 /cli/main.rs | |
parent | a3282aa9ed749f2e80618c6e2f25047d9a2bb2d8 (diff) |
feat(unstable): Support data: urls (#5157)
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/main.rs b/cli/main.rs index 0d55ea1df..6079974b7 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -478,6 +478,7 @@ async fn run_with_watch(flags: Flags, script: String) -> Result<(), ErrBox> { global_state.file_fetcher.clone(), global_state.maybe_import_map.clone(), Permissions::allow_all(), + flags.unstable, false, false, ); |