summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/process.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/process.ts')
-rw-r--r--ext/node/polyfills/process.ts38
1 files changed, 19 insertions, 19 deletions
diff --git a/ext/node/polyfills/process.ts b/ext/node/polyfills/process.ts
index 525000a53..eaff978c2 100644
--- a/ext/node/polyfills/process.ts
+++ b/ext/node/polyfills/process.ts
@@ -2,21 +2,21 @@
// Copyright Joyent, Inc. and Node.js contributors. All rights reserved. MIT license.
const internals = globalThis.__bootstrap.internals;
-import { core } from "internal:deno_node/polyfills/_core.ts";
+import { core } from "internal:deno_node/_core.ts";
import {
notImplemented,
warnNotImplemented,
-} from "internal:deno_node/polyfills/_utils.ts";
-import { EventEmitter } from "internal:deno_node/polyfills/events.ts";
-import { validateString } from "internal:deno_node/polyfills/internal/validators.mjs";
+} from "internal:deno_node/_utils.ts";
+import { EventEmitter } from "internal:deno_node/events.ts";
+import { validateString } from "internal:deno_node/internal/validators.mjs";
import {
ERR_INVALID_ARG_TYPE,
ERR_UNKNOWN_SIGNAL,
errnoException,
-} from "internal:deno_node/polyfills/internal/errors.ts";
-import { getOptionValue } from "internal:deno_node/polyfills/internal/options.ts";
-import { assert } from "internal:deno_node/polyfills/_util/asserts.ts";
-import { fromFileUrl, join } from "internal:deno_node/polyfills/path.ts";
+} from "internal:deno_node/internal/errors.ts";
+import { getOptionValue } from "internal:deno_node/internal/options.ts";
+import { assert } from "internal:deno_node/_util/asserts.ts";
+import { fromFileUrl, join } from "internal:deno_node/path.ts";
import {
arch as arch_,
chdir,
@@ -25,20 +25,20 @@ import {
nextTick as _nextTick,
version,
versions,
-} from "internal:deno_node/polyfills/_process/process.ts";
-import { _exiting } from "internal:deno_node/polyfills/_process/exiting.ts";
+} from "internal:deno_node/_process/process.ts";
+import { _exiting } from "internal:deno_node/_process/exiting.ts";
export { _nextTick as nextTick, chdir, cwd, env, version, versions };
import {
createWritableStdioStream,
initStdin,
-} from "internal:deno_node/polyfills/_process/streams.mjs";
+} from "internal:deno_node/_process/streams.mjs";
import {
enableNextTick,
processTicksAndRejections,
runNextTicks,
-} from "internal:deno_node/polyfills/_next_tick.ts";
-import { isWindows } from "internal:deno_node/polyfills/_util/os.ts";
-import * as files from "internal:runtime/js/40_files.js";
+} from "internal:deno_node/_next_tick.ts";
+import { isWindows } from "internal:deno_node/_util/os.ts";
+import * as files from "internal:runtime/40_files.js";
// TODO(kt3k): This should be set at start up time
export let arch = "";
@@ -58,11 +58,11 @@ let stdin = null as any;
let stdout = null as any;
export { stderr, stdin, stdout };
-import { getBinding } from "internal:deno_node/polyfills/internal_binding/mod.ts";
-import * as constants from "internal:deno_node/polyfills/internal_binding/constants.ts";
-import * as uv from "internal:deno_node/polyfills/internal_binding/uv.ts";
-import type { BindingName } from "internal:deno_node/polyfills/internal_binding/mod.ts";
-import { buildAllowedFlags } from "internal:deno_node/polyfills/internal/process/per_thread.mjs";
+import { getBinding } from "internal:deno_node/internal_binding/mod.ts";
+import * as constants from "internal:deno_node/internal_binding/constants.ts";
+import * as uv from "internal:deno_node/internal_binding/uv.ts";
+import type { BindingName } from "internal:deno_node/internal_binding/mod.ts";
+import { buildAllowedFlags } from "internal:deno_node/internal/process/per_thread.mjs";
// @ts-ignore Deno[Deno.internal] is used on purpose here
const DenoCommand = Deno[Deno.internal]?.nodeUnstable?.Command ||