From d299e76c82fee473f10df0a0c03287aad6e3d876 Mon Sep 17 00:00:00 2001 From: Felix Roos Date: Fri, 22 Mar 2024 16:25:10 +0100 Subject: [PATCH] remove embed and repl deps from website --- pnpm-lock.yaml | 6 ------ website/package.json | 2 -- website/src/docs/MiniRepl.jsx | 1 - 3 files changed, 9 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7db5a480..282f2b7b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -563,9 +563,6 @@ importers: '@strudel/draw': specifier: workspace:* version: link:../packages/draw - '@strudel/embed': - specifier: workspace:* - version: link:../packages/embed '@strudel/hydra': specifier: workspace:* version: link:../packages/hydra @@ -578,9 +575,6 @@ importers: '@strudel/osc': specifier: workspace:* version: link:../packages/osc - '@strudel/repl': - specifier: workspace:* - version: link:../packages/repl '@strudel/serial': specifier: workspace:* version: link:../packages/serial diff --git a/website/package.json b/website/package.json index cadcb6a1..47625ec0 100644 --- a/website/package.json +++ b/website/package.json @@ -33,8 +33,6 @@ "@strudel/midi": "workspace:*", "@strudel/mini": "workspace:*", "@strudel/osc": "workspace:*", - "@strudel/repl": "workspace:*", - "@strudel/embed": "workspace:*", "@strudel/serial": "workspace:*", "@strudel/soundfonts": "workspace:*", "@strudel/tonal": "workspace:*", diff --git a/website/src/docs/MiniRepl.jsx b/website/src/docs/MiniRepl.jsx index cb0f26f7..fe618965 100644 --- a/website/src/docs/MiniRepl.jsx +++ b/website/src/docs/MiniRepl.jsx @@ -5,7 +5,6 @@ import { getPunchcardPainter } from '@strudel/draw'; import { transpiler } from '@strudel/transpiler'; import { getAudioContext, webaudioOutput, initAudioOnFirstClick } from '@strudel/webaudio'; import { StrudelMirror } from '@strudel/codemirror'; -// import { prebake } from '@strudel/repl'; import { prebake } from '../repl/prebake.mjs'; import { loadModules } from '../repl/util.mjs'; import Claviature from '@components/Claviature';