diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-03-29 04:03:49 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-28 13:03:49 -0400 |
commit | bced52505f32d6cca4f944bb610a8a26767908a8 (patch) | |
tree | da49a5df4b7bd6f8306248069228cd6bd0db1303 /cli/js/deno.ts | |
parent | 1397b8e0e7c85762e19d88fde103342bfa563360 (diff) |
Update to Prettier 2 and use ES Private Fields (#4498)
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r-- | cli/js/deno.ts | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts index f42e39754..2c1d2a5b7 100644 --- a/cli/js/deno.ts +++ b/cli/js/deno.ts @@ -6,7 +6,7 @@ export { readAll, readAllSync, writeAll, - writeAllSync + writeAllSync, } from "./buffer.ts"; export { build, OperatingSystem, Arch } from "./build.ts"; export { chmodSync, chmod } from "./ops/fs/chmod.ts"; @@ -18,7 +18,7 @@ export { Diagnostic, DiagnosticCategory, DiagnosticItem, - DiagnosticMessageChain + DiagnosticMessageChain, } from "./diagnostics.ts"; export { chdir, cwd } from "./ops/fs/dir.ts"; export { applySourceMap, formatDiagnostics } from "./ops/errors.ts"; @@ -36,7 +36,7 @@ export { seek, seekSync, OpenOptions, - OpenMode + OpenMode, } from "./files.ts"; export { read, readSync, write, writeSync } from "./ops/io.ts"; export { FsEvent, fsEvents } from "./ops/fs_events.ts"; @@ -57,7 +57,7 @@ export { ReadSeeker, WriteSeeker, ReadWriteCloser, - ReadWriteSeeker + ReadWriteSeeker, } from "./io.ts"; export { linkSync, link } from "./ops/fs/link.ts"; export { @@ -65,7 +65,7 @@ export { makeTempDir, makeTempFileSync, makeTempFile, - MakeTempOptions + MakeTempOptions, } from "./ops/fs/make_temp.ts"; export { metrics, Metrics } from "./ops/runtime.ts"; export { mkdirSync, mkdir, MkdirOptions } from "./ops/fs/mkdir.ts"; @@ -76,7 +76,7 @@ export { Listener, Conn, ShutdownMode, - shutdown + shutdown, } from "./net.ts"; export { dir, @@ -85,14 +85,14 @@ export { execPath, hostname, loadavg, - osRelease + osRelease, } from "./ops/os.ts"; export { permissions, PermissionName, PermissionState, PermissionStatus, - Permissions + Permissions, } from "./permissions.ts"; export { openPlugin } from "./plugins.ts"; export { kill } from "./ops/process.ts"; |