This commit is contained in:
Felix Roos
2022-03-06 20:04:55 +01:00
parent 1dda16c010
commit 76760fc85f
5 changed files with 26 additions and 7 deletions
+2 -1
View File
@@ -3,6 +3,7 @@ import "./tone.js";
import "./midi.js";
import "./voicings.js";
import "./tonal.js";
import gist from "./gist.js";
import shapeshifter from "./shapeshifter.js";
import {minify} from "./parse.js";
import * as Tone from "../_snowpack/pkg/tone.js";
@@ -19,7 +20,7 @@ function hackLiteral(literal, names, func) {
}
hackLiteral(String, ["mini", "m"], bootstrapped.mini);
hackLiteral(String, ["pure", "p"], bootstrapped.pure);
Object.assign(globalThis, bootstrapped, Tone, toneHelpers);
Object.assign(globalThis, bootstrapped, Tone, toneHelpers, {gist});
export const evaluate = async (code) => {
const shapeshifted = shapeshifter(code);
let evaluated = await eval(shapeshifted);