From 7652fefff3e37c4d4618b0a736d842754dd5e55a Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Mon, 6 Oct 2025 20:39:32 -0700 Subject: [PATCH] wrong dir --- bin/new.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/new.ts b/bin/new.ts index ce6bc4a..82ec80e 100644 --- a/bin/new.ts +++ b/bin/new.ts @@ -14,7 +14,7 @@ export default function (project: string) { if (projects().includes(project)) throw `${project} already exists` - const dir = join(NOSE_DIR, project, "bin") + const dir = join(NOSE_DIR, project) mkdirSync(dir, { recursive: true }) writeFileSync(join(dir, `index.ts`), `export default (c: Context) =>\n "Hello, world!"`)