From 98dde6975179f7c09192f4930e3dc00c8d98cc81 Mon Sep 17 00:00:00 2001 From: TopchetoEU <36534413+TopchetoEU@users.noreply.github.com> Date: Thu, 9 Jan 2025 00:12:13 +0200 Subject: [PATCH] revert to coffeescript transpiler --- src/lib/transpiler/_entry.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/lib/transpiler/_entry.ts b/src/lib/transpiler/_entry.ts index 1d82430..f5aac7e 100644 --- a/src/lib/transpiler/_entry.ts +++ b/src/lib/transpiler/_entry.ts @@ -1,7 +1,4 @@ -// import coffeescript from "./coffeescript.ts"; -// import babel from "./babel.ts"; +import coffeescript from "./coffeescript.ts"; +import babel from "./babel.ts"; -// register(v => coffeescript(babel(v))); -import typescript from "./typescript.ts"; - -register(typescript); +register(v => coffeescript(babel(v)));