refactor: localize, remove helpers file when there's no reuse

This commit is contained in:
Felix Roos 2026-02-18 23:47:47 +01:00
parent 3911142443
commit 761e2e347e
No known key found for this signature in database
8 changed files with 176 additions and 178 deletions

View file

@ -7,6 +7,11 @@ import { evaluate as _evaluate } from '@strudel/core';
import { transpiler } from './transpiler.mjs';
export * from './transpiler.mjs';
export * from './helpers.mjs';
import './plugin-kabelsalat.mjs';
import './plugin-mini.mjs';
import './plugin-sample.mjs';
import './plugin-widgets.mjs';
export { registerWidgetType, getWidgetID } from './plugin-widgets.mjs';
export const evaluate = (code, transpilerOptions) => _evaluate(code, transpiler, transpilerOptions);