From e3104c223cf34c19963113f76269050770d6ce37 Mon Sep 17 00:00:00 2001 From: TopchetoEU <36534413+TopchetoEU@users.noreply.github.com> Date: Sun, 5 Nov 2023 20:29:21 +0200 Subject: [PATCH] fix: remove some unnececeary logs --- build.js | 2 -- src/me/topchetoeu/jscript/js/bootstrap.js | 2 -- 2 files changed, 4 deletions(-) diff --git a/build.js b/build.js index 3906db9..34ab125 100644 --- a/build.js +++ b/build.js @@ -10,8 +10,6 @@ const conf = { version: argv[3] }; -console.log(conf) - if (conf.version.startsWith('refs/tags/')) conf.version = conf.version.substring(10); if (conf.version.startsWith('v')) conf.version = conf.version.substring(1); diff --git a/src/me/topchetoeu/jscript/js/bootstrap.js b/src/me/topchetoeu/jscript/js/bootstrap.js index 3df4707..65d2bce 100644 --- a/src/me/topchetoeu/jscript/js/bootstrap.js +++ b/src/me/topchetoeu/jscript/js/bootstrap.js @@ -1,7 +1,5 @@ (function (_arguments) { var ts = _arguments[0]; - log("Loaded typescript!"); - var src = '', lib = _arguments[2].concat([ 'declare const exit: never;' ]).join(''), decls = '', version = 0; var libSnapshot = ts.ScriptSnapshot.fromString(lib);