From 290cbcb9dafe8e1ff45f6de406f5d511144b145c Mon Sep 17 00:00:00 2001 From: Axetroy Date: Mon, 8 Apr 2019 21:29:44 +0800 Subject: [PATCH] feat: add entry point file for fs modules (#272) --- fs/mod.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 fs/mod.ts diff --git a/fs/mod.ts b/fs/mod.ts new file mode 100644 index 0000000000..28b5753b9a --- /dev/null +++ b/fs/mod.ts @@ -0,0 +1,12 @@ +// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +export * from "./empty_dir.ts"; +export * from "./ensure_dir.ts"; +export * from "./ensure_file.ts"; +export * from "./exists.ts"; +export * from "./glob.ts"; +export * from "./globrex.ts"; +export * from "./move.ts"; +export * from "./read_json.ts"; +export * from "./write_json.ts"; +export * from "./walk.ts"; +export * from "./eol.ts";