(
dest: string,
vercelConfig: VercelConfig
)
| 3002 | } |
| 3003 | |
| 3004 | async hasFilesystem( |
| 3005 | dest: string, |
| 3006 | vercelConfig: VercelConfig |
| 3007 | ): Promise<boolean> { |
| 3008 | if ( |
| 3009 | await findBuildMatch( |
| 3010 | this.buildMatches, |
| 3011 | this.files, |
| 3012 | dest, |
| 3013 | this, |
| 3014 | vercelConfig, |
| 3015 | true |
| 3016 | ) |
| 3017 | ) { |
| 3018 | return true; |
| 3019 | } |
| 3020 | return false; |
| 3021 | } |
| 3022 | |
| 3023 | isCaseSensitive(): boolean { |
| 3024 | return this.caseSensitive; |
no test coverage detected