Add terser as a devDependency and update package-lock.json with new dependencies

This commit is contained in:
Torsten Schulz (local)
2025-12-04 16:43:12 +01:00
parent 6e9116e819
commit fb2de33e76
197 changed files with 108854 additions and 0 deletions

7
client/node_modules/terser/tools/exit.cjs generated vendored Normal file
View File

@@ -0,0 +1,7 @@
// workaround for tty output truncation upon process.exit()
// https://github.com/nodejs/node/issues/6456
[process.stdout, process.stderr].forEach((s) => {
s && s.isTTY && s._handle && s._handle.setBlocking &&
s._handle.setBlocking(true)
});