From e88627693c00d68af3502a639c67a253729be657 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Wed, 1 Oct 2025 20:44:00 -0700 Subject: [PATCH] new project structure --- nose/chris/bin/chris.ts | 3 +++ nose/{www => }/chris/pub/burger.png | Bin nose/{www => }/chris/pub/index.html | 0 nose/{www => }/chris/pub/main.css | 0 nose/corey/bin/corey.ts | 3 +++ nose/{www => }/corey/pub/hotdog.png | Bin nose/{www => }/corey/pub/index.html | 0 nose/hello/bin/hello.tsx | 3 +++ nose/{www => }/hello/index.ts | 0 nose/{www => }/hello/pub/index.html | 0 nose/{www => ping/bin}/ping.ts | 2 +- nose/{bin => ping}/ping.ts | 0 nose/sys/bin/sys.ts | 2 ++ 13 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 nose/chris/bin/chris.ts rename nose/{www => }/chris/pub/burger.png (100%) rename nose/{www => }/chris/pub/index.html (100%) rename nose/{www => }/chris/pub/main.css (100%) create mode 100644 nose/corey/bin/corey.ts rename nose/{www => }/corey/pub/hotdog.png (100%) rename nose/{www => }/corey/pub/index.html (100%) create mode 100644 nose/hello/bin/hello.tsx rename nose/{www => }/hello/index.ts (100%) rename nose/{www => }/hello/pub/index.html (100%) rename nose/{www => ping/bin}/ping.ts (67%) rename nose/{bin => ping}/ping.ts (100%) create mode 100644 nose/sys/bin/sys.ts diff --git a/nose/chris/bin/chris.ts b/nose/chris/bin/chris.ts new file mode 100644 index 0000000..5f51568 --- /dev/null +++ b/nose/chris/bin/chris.ts @@ -0,0 +1,3 @@ +export default function () { + return "chris works!" +} \ No newline at end of file diff --git a/nose/www/chris/pub/burger.png b/nose/chris/pub/burger.png similarity index 100% rename from nose/www/chris/pub/burger.png rename to nose/chris/pub/burger.png diff --git a/nose/www/chris/pub/index.html b/nose/chris/pub/index.html similarity index 100% rename from nose/www/chris/pub/index.html rename to nose/chris/pub/index.html diff --git a/nose/www/chris/pub/main.css b/nose/chris/pub/main.css similarity index 100% rename from nose/www/chris/pub/main.css rename to nose/chris/pub/main.css diff --git a/nose/corey/bin/corey.ts b/nose/corey/bin/corey.ts new file mode 100644 index 0000000..8101a57 --- /dev/null +++ b/nose/corey/bin/corey.ts @@ -0,0 +1,3 @@ +export default function () { + return "corey works!" +} \ No newline at end of file diff --git a/nose/www/corey/pub/hotdog.png b/nose/corey/pub/hotdog.png similarity index 100% rename from nose/www/corey/pub/hotdog.png rename to nose/corey/pub/hotdog.png diff --git a/nose/www/corey/pub/index.html b/nose/corey/pub/index.html similarity index 100% rename from nose/www/corey/pub/index.html rename to nose/corey/pub/index.html diff --git a/nose/hello/bin/hello.tsx b/nose/hello/bin/hello.tsx new file mode 100644 index 0000000..fe5f61c --- /dev/null +++ b/nose/hello/bin/hello.tsx @@ -0,0 +1,3 @@ +export default function () { + return

HELLO!

+} \ No newline at end of file diff --git a/nose/www/hello/index.ts b/nose/hello/index.ts similarity index 100% rename from nose/www/hello/index.ts rename to nose/hello/index.ts diff --git a/nose/www/hello/pub/index.html b/nose/hello/pub/index.html similarity index 100% rename from nose/www/hello/pub/index.html rename to nose/hello/pub/index.html diff --git a/nose/www/ping.ts b/nose/ping/bin/ping.ts similarity index 67% rename from nose/www/ping.ts rename to nose/ping/bin/ping.ts index 01816b7..67e9cf3 100644 --- a/nose/www/ping.ts +++ b/nose/ping/bin/ping.ts @@ -1,2 +1,2 @@ export default () => - "pong" \ No newline at end of file + "pong" \ No newline at end of file diff --git a/nose/bin/ping.ts b/nose/ping/ping.ts similarity index 100% rename from nose/bin/ping.ts rename to nose/ping/ping.ts diff --git a/nose/sys/bin/sys.ts b/nose/sys/bin/sys.ts new file mode 100644 index 0000000..7a25c01 --- /dev/null +++ b/nose/sys/bin/sys.ts @@ -0,0 +1,2 @@ +export default () => + "sys online" \ No newline at end of file