mirror of
https://github.com/denoland/deno.git
synced 2024-12-11 10:07:54 -05:00
ce75e31625
This commit changes "include_js_files!" macro from "deno_core" in a way that "dir" option doesn't cause specifiers to be rewritten to include it. Example: ``` include_js_files! { dir "js", "hello.js", } ``` The above definition required embedders to use: `import ... from "internal:<ext_name>/js/hello.js"`. But with this change, the "js" directory in which the files are stored is an implementation detail, which for embedders results in: `import ... from "internal:<ext_name>/hello.js"`. The directory the files are stored in, is an implementation detail and in some cases might result in a significant size difference for the snapshot. As an example, in "deno_node" extension, we store the source code in "polyfills" directory; which resulted in each specifier to look like "internal:deno_node/polyfills/<module_name>", but with this change it's "internal:deno_node/<module_name>". Given that "deno_node" has over 100 files, many of them having several import specifiers to the same extension, this change removes 10 characters from each import specifier.
76 lines
1.6 KiB
JavaScript
76 lines
1.6 KiB
JavaScript
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
const core = globalThis.Deno.core;
|
|
const primordials = globalThis.__bootstrap.primordials;
|
|
import { isatty } from "internal:runtime/40_tty.js";
|
|
import { stdin } from "internal:runtime/40_files.js";
|
|
const { ArrayPrototypePush, StringPrototypeCharCodeAt, Uint8Array } =
|
|
primordials;
|
|
const LF = StringPrototypeCharCodeAt("\n", 0);
|
|
const CR = StringPrototypeCharCodeAt("\r", 0);
|
|
|
|
function alert(message = "Alert") {
|
|
if (!isatty(stdin.rid)) {
|
|
return;
|
|
}
|
|
|
|
core.print(`${message} [Enter] `, false);
|
|
|
|
readLineFromStdinSync();
|
|
}
|
|
|
|
function confirm(message = "Confirm") {
|
|
if (!isatty(stdin.rid)) {
|
|
return false;
|
|
}
|
|
|
|
core.print(`${message} [y/N] `, false);
|
|
|
|
const answer = readLineFromStdinSync();
|
|
|
|
return answer === "Y" || answer === "y";
|
|
}
|
|
|
|
function prompt(message = "Prompt", defaultValue) {
|
|
defaultValue ??= null;
|
|
|
|
if (!isatty(stdin.rid)) {
|
|
return null;
|
|
}
|
|
|
|
core.print(`${message} `, false);
|
|
|
|
if (defaultValue) {
|
|
core.print(`[${defaultValue}] `, false);
|
|
}
|
|
|
|
return readLineFromStdinSync() || defaultValue;
|
|
}
|
|
|
|
function readLineFromStdinSync() {
|
|
const c = new Uint8Array(1);
|
|
const buf = [];
|
|
|
|
while (true) {
|
|
const n = stdin.readSync(c);
|
|
if (n === null || n === 0) {
|
|
break;
|
|
}
|
|
if (c[0] === CR) {
|
|
const n = stdin.readSync(c);
|
|
if (c[0] === LF) {
|
|
break;
|
|
}
|
|
ArrayPrototypePush(buf, CR);
|
|
if (n === null || n === 0) {
|
|
break;
|
|
}
|
|
}
|
|
if (c[0] === LF) {
|
|
break;
|
|
}
|
|
ArrayPrototypePush(buf, c[0]);
|
|
}
|
|
return core.decode(new Uint8Array(buf));
|
|
}
|
|
|
|
export { alert, confirm, prompt };
|