Compare commits

..

No commits in common. "main" and "v1.0.5" have entirely different histories.
main ... v1.0.5

2 changed files with 1 additions and 6 deletions

View File

@ -44,7 +44,6 @@ export async function cliPrompt(
render();
const buf = new Uint8Array(64); // large enough for most pastes
inputLoop:
while (true) {
const n = await Deno.stdin.read(buf);
if (n === null) break;
@ -60,10 +59,6 @@ export async function cliPrompt(
Deno.exit(130);
}
if (byte === 13) { // Enter
break inputLoop;
}
// Escape sequence?
if (byte === 27 && i + 1 < n && buf[i + 1] === 91) {
const third = buf[i + 2];

View File

@ -1,6 +1,6 @@
{
"name": "@bearmetal/pdf-tools",
"version": "1.0.7",
"version": "1.0.5",
"license": "GPL 3.0",
"tasks": {
"dev": "deno run -A --env-file=.env main.ts",