mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 15:24:46 -05:00
fix(std/fs): remove unexisted imports (#6850)
This commit is contained in:
parent
fd900cfe21
commit
e18e46a3b3
2 changed files with 2 additions and 2 deletions
|
@ -8,8 +8,6 @@ export * from "./exists.ts";
|
|||
export * from "./expand_glob.ts";
|
||||
export * from "./move.ts";
|
||||
export * from "./copy.ts";
|
||||
export * from "./read_file_str.ts";
|
||||
export * from "./write_file_str.ts";
|
||||
export * from "./read_json.ts";
|
||||
export * from "./write_json.ts";
|
||||
export * from "./walk.ts";
|
||||
|
|
2
std/fs/test.ts
Normal file
2
std/fs/test.ts
Normal file
|
@ -0,0 +1,2 @@
|
|||
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
||||
import "./mod.ts";
|
Loading…
Reference in a new issue