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": { "alias": {
"@utils": "./src/utils.tsx", "@utils": "./src/utils.tsx",
"@config": "./src/config.ts",
"@/*": "./src/*" "@/*": "./src/*"
}, },
"devDependencies": { "devDependencies": {

View File

@ -29,7 +29,7 @@ export function apps(): string[] {
for (const entry of readdirSync(NOSE_USR_WWW)) for (const entry of readdirSync(NOSE_USR_WWW))
apps.push(entry.replace(/\.tsx?/, "")) apps.push(entry.replace(/\.tsx?/, ""))
return apps return apps.sort()
} }
async function findApp(name: string): Promise<App | undefined> { async function findApp(name: string): Promise<App | undefined> {