Change import { x } from "deno" to const { x } = Deno (denoland/deno_std#218)

Original: 6063378a92
This commit is contained in:
Bert Belder 2019-02-25 21:35:50 -08:00 committed by Ryan Dahl
parent a7bf191353
commit 2ba7de2d04
32 changed files with 43 additions and 55 deletions

View file

@ -1,7 +1,7 @@
#!/usr/bin/env deno --allow-net --allow-env
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { args, env, exit, readFile } from "deno";
const { args, env, exit, readFile } = Deno;
import { parse } from "https://deno.land/x/flags/mod.ts";
function pathBase(p: string): string {