summary refs log tree commit diff
diff options
context:
space:
mode:
authorwlodekm <[email protected]>2024-11-26 13:08:40 +0200
committerwlodekm <[email protected]>2024-11-26 13:08:40 +0200
commit5deacee61b572d7a83225073567b4758d1854adf (patch)
tree146f11a6760dc1adba0b5f438189db0b5202b498
parent12fa89c91ecbd2af9592b38bcb2b17c7c7325cdb (diff)
solve some problems
-rw-r--r--deno.lock4
-rw-r--r--screen.ts5
2 files changed, 6 insertions, 3 deletions
diff --git a/deno.lock b/deno.lock
index 6c70a29..d1e49f9 100644
--- a/deno.lock
+++ b/deno.lock
@@ -1,11 +1,11 @@
 {
   "version": "4",
-  "remote": {},
   "workspace": {
     "packageJson": {
       "dependencies": [
         "npm:@types/node@^22.9.0",
-        "npm:chalk@^5.3.0"
+        "npm:chalk@^5.3.0",
+        "npm:express@^4.21.1"
       ]
     }
   }
diff --git a/screen.ts b/screen.ts
index 324ce7b..7d47412 100644
--- a/screen.ts
+++ b/screen.ts
@@ -1,8 +1,11 @@
-// deno-lint-ignore-file no-process-globals ban-ts-comment no-explicit-any
+// deno-lint-ignore ban-unused-ignore
+// deno-lint-ignore ban-unused-ignore
+// deno-lint-ignore-file no-process-globals ban-ts-comment no-explicit-any ban-unused-ignore
 // ^ problem solved
 import { Key } from "node:readline";
 import type { Element, Input, Text, Button } from "./elements.ts"
 import { Buffer } from "node:buffer";
+import process from "node:process";
 
 const logs: string[] = [];