From cb697777556801f9821472b5bffcdc33a3baa3eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Mon, 24 Nov 2025 12:07:02 +0100 Subject: [PATCH 1/2] Update new Nitro default --- src/Detection/Framework/TanStackStart.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Detection/Framework/TanStackStart.php b/src/Detection/Framework/TanStackStart.php index a53ad87..f270766 100644 --- a/src/Detection/Framework/TanStackStart.php +++ b/src/Detection/Framework/TanStackStart.php @@ -45,6 +45,6 @@ public function getBuildCommand(): string public function getOutputDirectory(): string { - return './dist'; + return './.output'; } } From 0ba6ee6d9f47c301faa944bb0edda0d152ed4346 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Mon, 24 Nov 2025 12:10:29 +0100 Subject: [PATCH 2/2] Fix tests --- tests/unit/DetectorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/DetectorTest.php b/tests/unit/DetectorTest.php index f045904..765a908 100644 --- a/tests/unit/DetectorTest.php +++ b/tests/unit/DetectorTest.php @@ -421,7 +421,7 @@ public function testTanStackStartDetectionWithPackages(): void $this->assertEquals('tanstack-start', $detectedFramework->getName()); $this->assertEquals('npm install', $detectedFramework->getInstallCommand()); $this->assertEquals('npm run build', $detectedFramework->getBuildCommand()); - $this->assertEquals('./dist', $detectedFramework->getOutputDirectory()); + $this->assertEquals('./.output', $detectedFramework->getOutputDirectory()); } /**