From 0683a4f8771644d75908181988c8d84976bad346 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath <2+defunkt@users.noreply.github.com> Date: Sun, 21 Sep 2025 10:49:57 -0700 Subject: [PATCH] little things --- nose/bin/hello.ts | 3 --- package.json | 1 + src/webapp.ts | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) delete mode 100644 nose/bin/hello.ts diff --git a/nose/bin/hello.ts b/nose/bin/hello.ts deleted file mode 100644 index b02821f..0000000 --- a/nose/bin/hello.ts +++ /dev/null @@ -1,3 +0,0 @@ -export default function (): string { - return "Hello, world!" -} \ No newline at end of file diff --git a/package.json b/package.json index 6e7bec5..079fcc3 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ }, "alias": { "@utils": "./src/utils.tsx", + "@config": "./src/config.ts", "@/*": "./src/*" }, "devDependencies": { diff --git a/src/webapp.ts b/src/webapp.ts index b915368..22e3cd8 100644 --- a/src/webapp.ts +++ b/src/webapp.ts @@ -29,7 +29,7 @@ export function apps(): string[] { for (const entry of readdirSync(NOSE_USR_WWW)) apps.push(entry.replace(/\.tsx?/, "")) - return apps + return apps.sort() } async function findApp(name: string): Promise {