fix build

This commit is contained in:
Orion Reed 2024-12-22 23:43:31 -05:00
parent 8e6e4380f4
commit 823a49fbec
3 changed files with 6 additions and 6 deletions

View File

@ -19,7 +19,7 @@ function getCanvasFiles() {
} else if (dirent.name.endsWith('.html')) { } else if (dirent.name.endsWith('.html')) {
files.push({ files.push({
path: `${base}${dirent.name}`, path: `${base}${dirent.name}`,
name: dirent.name, name: `${base}${dirent.name}`,
}); });
} }
}); });

View File

@ -1,4 +1,4 @@
<!DOCTYPE html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
@ -53,7 +53,7 @@
</folk-shape> </folk-shape>
<script type="module"> <script type="module">
import './src/folk-metronome.ts'; import '../src/folk-metronome.ts';
import '@labs/standalone/folk-shape.ts'; import '@labs/standalone/folk-shape.ts';
import '@labs/standalone/folk-event-propagator.ts'; import '@labs/standalone/folk-event-propagator.ts';
</script> </script>

View File

@ -1,4 +1,4 @@
<!DOCTYPE html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
@ -88,8 +88,8 @@
></folk-event-propagator> ></folk-event-propagator>
<script type="module"> <script type="module">
import { GeoWiki } from './src/geo-wiki.ts'; import { GeoWiki } from '../src/geo-wiki.ts';
import { FolkWeather } from './src/folk-weather.ts'; import { FolkWeather } from '../src/folk-weather.ts';
import '@labs/standalone/folk-shape.ts'; import '@labs/standalone/folk-shape.ts';
import { FolkMap } from '@labs/standalone/folk-map.ts'; import { FolkMap } from '@labs/standalone/folk-map.ts';
import { FolkCluster } from '@labs/standalone/folk-proximity.ts'; import { FolkCluster } from '@labs/standalone/folk-proximity.ts';