Replace deno.land/x/ with deno.land/std/ (denoland/deno_std#239)

Original: 0fc13fffbd
This commit is contained in:
Andy Hayden 2019-03-06 07:24:53 -08:00 committed by Ryan Dahl
parent c6075f373e
commit d29957ad17
13 changed files with 27 additions and 27 deletions

View file

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