little things

This commit is contained in:
Chris Wanstrath 2025-09-21 10:49:57 -07:00
parent e54a1f44d0
commit 0683a4f877
3 changed files with 2 additions and 4 deletions

View File

@ -1,3 +0,0 @@
export default function (): string {
return "Hello, world!"
}

View File

@ -15,6 +15,7 @@
},
"alias": {
"@utils": "./src/utils.tsx",
"@config": "./src/config.ts",
"@/*": "./src/*"
},
"devDependencies": {

View File

@ -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<App | undefined> {