more moves

This commit is contained in:
“chrisshank” 2024-12-11 16:20:38 -08:00
parent 4558990ac2
commit 7b4a4a856e
3 changed files with 4 additions and 7 deletions

View File

@ -55,7 +55,7 @@
<script type="module">
import '../src/standalone/folk-shape.ts';
import '../src/standalone/folk-llm.ts';
import '../src/standalone/folk-metronome.ts';
import './src/folk-metronome.ts';
import '../src/standalone/folk-event-propagator.ts';
</script>
</body>

View File

@ -1,4 +1,4 @@
import { FolkElement } from './common/folk-element';
import { FolkElement } from '../../src/common/folk-element';
declare global {
interface HTMLElementTagNameMap {
@ -67,3 +67,5 @@ export class FolkMetronome extends FolkElement {
this.textContent = this.#beat.toString();
};
}
FolkMetronome.define();

View File

@ -1,5 +0,0 @@
import { FolkMetronome } from '../folk-metronome';
FolkMetronome.define();
export { FolkMetronome };