diff options
Diffstat (limited to 'std/fs')
-rw-r--r-- | std/fs/_util_test.ts | 2 | ||||
-rw-r--r-- | std/fs/copy.ts | 2 | ||||
-rw-r--r-- | std/fs/copy_test.ts | 2 | ||||
-rw-r--r-- | std/fs/eol_test.ts | 2 | ||||
-rw-r--r-- | std/fs/expand_glob.ts | 4 | ||||
-rw-r--r-- | std/fs/expand_glob_test.ts | 4 | ||||
-rw-r--r-- | std/fs/walk_test.ts | 2 |
7 files changed, 9 insertions, 9 deletions
diff --git a/std/fs/_util_test.ts b/std/fs/_util_test.ts index b5fdfe40b..9a24caaf0 100644 --- a/std/fs/_util_test.ts +++ b/std/fs/_util_test.ts @@ -2,7 +2,7 @@ import { assertEquals } from "../testing/asserts.ts"; import * as path from "../path/mod.ts"; -import { isSubdir, getFileInfoType, PathType } from "./_util.ts"; +import { getFileInfoType, isSubdir, PathType } from "./_util.ts"; import { ensureFileSync } from "./ensure_file.ts"; import { ensureDirSync } from "./ensure_dir.ts"; diff --git a/std/fs/copy.ts b/std/fs/copy.ts index b1b340354..ed4493da0 100644 --- a/std/fs/copy.ts +++ b/std/fs/copy.ts @@ -1,7 +1,7 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import * as path from "../path/mod.ts"; import { ensureDir, ensureDirSync } from "./ensure_dir.ts"; -import { isSubdir, getFileInfoType } from "./_util.ts"; +import { getFileInfoType, isSubdir } from "./_util.ts"; import { assert } from "../_util/assert.ts"; const isWindows = Deno.build.os === "windows"; diff --git a/std/fs/copy_test.ts b/std/fs/copy_test.ts index db9451200..859239d10 100644 --- a/std/fs/copy_test.ts +++ b/std/fs/copy_test.ts @@ -1,9 +1,9 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { + assert, assertEquals, assertThrows, assertThrowsAsync, - assert, } from "../testing/asserts.ts"; import * as path from "../path/mod.ts"; import { copy, copySync } from "./copy.ts"; diff --git a/std/fs/eol_test.ts b/std/fs/eol_test.ts index 35b3e0d9a..dd427d219 100644 --- a/std/fs/eol_test.ts +++ b/std/fs/eol_test.ts @@ -1,6 +1,6 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { assertEquals } from "../testing/asserts.ts"; -import { format, detect, EOL } from "./eol.ts"; +import { detect, EOL, format } from "./eol.ts"; const CRLFinput = "deno\r\nis not\r\nnode"; const Mixedinput = "deno\nis not\r\nnode"; diff --git a/std/fs/expand_glob.ts b/std/fs/expand_glob.ts index c57ddef45..72907e157 100644 --- a/std/fs/expand_glob.ts +++ b/std/fs/expand_glob.ts @@ -1,18 +1,18 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { GlobOptions, - SEP_PATTERN, globToRegExp, isAbsolute, isGlob, joinGlobs, normalize, + SEP_PATTERN, } from "../path/mod.ts"; import { - WalkEntry, _createWalkEntry, _createWalkEntrySync, walk, + WalkEntry, walkSync, } from "./walk.ts"; import { assert } from "../_util/assert.ts"; diff --git a/std/fs/expand_glob_test.ts b/std/fs/expand_glob_test.ts index 49c7bf143..39235906b 100644 --- a/std/fs/expand_glob_test.ts +++ b/std/fs/expand_glob_test.ts @@ -6,15 +6,15 @@ import { assertStringContains, } from "../testing/asserts.ts"; import { + fromFileUrl, join, joinGlobs, normalize, relative, - fromFileUrl, } from "../path/mod.ts"; import { - ExpandGlobOptions, expandGlob, + ExpandGlobOptions, expandGlobSync, } from "./expand_glob.ts"; diff --git a/std/fs/walk_test.ts b/std/fs/walk_test.ts index 1352ce448..c772f4912 100644 --- a/std/fs/walk_test.ts +++ b/std/fs/walk_test.ts @@ -1,5 +1,5 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -import { walk, walkSync, WalkOptions, WalkEntry } from "./walk.ts"; +import { walk, WalkEntry, WalkOptions, walkSync } from "./walk.ts"; import { assert, assertEquals, assertThrowsAsync } from "../testing/asserts.ts"; export function testWalk( |