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'; } } 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()); } /**