diff options
Diffstat (limited to 'js/symlink.ts')
-rw-r--r-- | js/symlink.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/js/symlink.ts b/js/symlink.ts index 6fd2e90a5..4418e22ce 100644 --- a/js/symlink.ts +++ b/js/symlink.ts @@ -1,8 +1,8 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -import { sendSync, sendAsync } from "./dispatch_json"; -import * as dispatch from "./dispatch"; -import * as util from "./util"; -import { platform } from "./build"; +import { sendSync, sendAsync } from "./dispatch_json.ts"; +import * as dispatch from "./dispatch.ts"; +import * as util from "./util.ts"; +import { platform } from "./build.ts"; /** Synchronously creates `newname` as a symbolic link to `oldname`. The type * argument can be set to `dir` or `file` and is only available on Windows |