From 122c4242ceb40c110af4784b6f272aed87eb465a Mon Sep 17 00:00:00 2001 From: Felix Roos Date: Sun, 13 Nov 2022 01:43:54 +0100 Subject: [PATCH] use new transpiler in test runtime --- repl/src/runtime.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repl/src/runtime.mjs b/repl/src/runtime.mjs index 81fdc2d6..8945f1a8 100644 --- a/repl/src/runtime.mjs +++ b/repl/src/runtime.mjs @@ -3,8 +3,8 @@ // it might require mocking more stuff when tunes added that use other functions // import * as tunes from './tunes.mjs'; -import { evaluate } from '@strudel.cycles/eval'; -// import { evaluate } from '@strudel.cycles/transpiler'; +// import { evaluate } from '@strudel.cycles/eval'; +import { evaluate } from '@strudel.cycles/transpiler'; import { evalScope } from '@strudel.cycles/core'; import * as strudel from '@strudel.cycles/core'; import * as webaudio from '@strudel.cycles/webaudio';