File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
packages/wrangler/src/autoconfig Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ export async function getDetailsForAutoConfig({
162162
163163 return {
164164 projectPath : projectPath ,
165- configured : ( await framework ?. isConfigured ( projectPath ) ) ?? false ,
165+ configured : framework ?. isConfigured ( projectPath ) ?? false ,
166166 framework,
167167 packageJson,
168168 buildCommand : detectedFramework ?. buildCommand ?? packageJsonBuild ,
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export type ConfigurationResults = {
2424export abstract class Framework {
2525 constructor ( public name : string = "Static" ) { }
2626
27- isConfigured ( _projectPath : string ) : boolean | Promise < boolean > {
27+ isConfigured ( _projectPath : string ) : boolean {
2828 return false ;
2929 }
3030
You can’t perform that action at this time.
0 commit comments