From f7976890db2a6c7f511aa6b9889044ce671ff35a Mon Sep 17 00:00:00 2001 From: 0xBunzy Date: Thu, 31 Oct 2024 14:25:28 -0700 Subject: [PATCH] fix: audit --- src/bin/script.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/script.ts b/src/bin/script.ts index 5fbfe90..4452ba0 100644 --- a/src/bin/script.ts +++ b/src/bin/script.ts @@ -97,7 +97,7 @@ async function run() { // Check the selected framework and run the appropriate command if (framework === "Next.js") { console.log(`Running create-next-app for project: ${projectName}...`); - const createNextAppArgs = ["create-next-app@14.1.0", projectName]; + const createNextAppArgs = ["create-next-app@14.2.3", projectName]; // Add --typescript flag if TypeScript is selected if (language === "TypeScript") {