mirror of
https://github.com/denoland/deno.git
synced 2024-10-29 08:58:01 -04:00
Fix Deno.dir and Diagnostics being present at stable runtime (#5750)
This commit is contained in:
parent
3b86552d66
commit
6feca0ef8b
2 changed files with 7 additions and 7 deletions
|
@ -13,12 +13,6 @@ export { chmodSync, chmod } from "./ops/fs/chmod.ts";
|
|||
export { chownSync, chown } from "./ops/fs/chown.ts";
|
||||
export { customInspect, inspect } from "./web/console.ts";
|
||||
export { copyFileSync, copyFile } from "./ops/fs/copy_file.ts";
|
||||
export {
|
||||
Diagnostic,
|
||||
DiagnosticCategory,
|
||||
DiagnosticItem,
|
||||
DiagnosticMessageChain,
|
||||
} from "./diagnostics.ts";
|
||||
export { chdir, cwd } from "./ops/fs/dir.ts";
|
||||
export { errors } from "./errors.ts";
|
||||
export {
|
||||
|
@ -59,7 +53,7 @@ export {
|
|||
export { metrics, Metrics } from "./ops/runtime.ts";
|
||||
export { mkdirSync, mkdir, MkdirOptions } from "./ops/fs/mkdir.ts";
|
||||
export { connect, listen, Listener, Conn } from "./net.ts";
|
||||
export { dir, env, exit, execPath } from "./ops/os.ts";
|
||||
export { env, exit, execPath } from "./ops/os.ts";
|
||||
export { run, RunOptions, Process, ProcessStatus } from "./process.ts";
|
||||
export { DirEntry, readDirSync, readDir } from "./ops/fs/read_dir.ts";
|
||||
export { readFileSync, readFile } from "./read_file.ts";
|
||||
|
|
|
@ -23,3 +23,9 @@ export {
|
|||
PermissionStatus,
|
||||
Permissions,
|
||||
} from "./permissions.ts";
|
||||
export {
|
||||
Diagnostic,
|
||||
DiagnosticCategory,
|
||||
DiagnosticItem,
|
||||
DiagnosticMessageChain,
|
||||
} from "./diagnostics.ts";
|
||||
|
|
Loading…
Reference in a new issue