@@ -26,7 +26,7 @@ const SIMPLE_SERVER_FILE_PATH = join(__dirname, "simple-server", "bundled_server
2626
2727export const ALLOWED_BUILDERS = [
2828 "@angular-devkit/build-angular:application" ,
29- "@analogjs/platform:vite"
29+ "@analogjs/platform:vite" ,
3030] ;
3131
3232/**
@@ -43,8 +43,8 @@ export async function checkBuildConditions(opts: BuildOptions): Promise<void> {
4343 const builder = projectJson . targets . build . executor ;
4444 if ( ! ALLOWED_BUILDERS . includes ( builder ) ) {
4545 throw new Error (
46- `Currently, only the following builders are supported: ${ ALLOWED_BUILDERS . join ( ',' ) } .` ,
47- )
46+ `Currently, only the following builders are supported: ${ ALLOWED_BUILDERS . join ( "," ) } .` ,
47+ ) ;
4848 }
4949 return ;
5050 }
@@ -80,7 +80,7 @@ export async function checkBuildConditions(opts: BuildOptions): Promise<void> {
8080 const { builder } = workspaceProject . targets . get ( target ) ! ;
8181 if ( ! ALLOWED_BUILDERS . includes ( builder ) ) {
8282 throw new Error (
83- `Currently, only the following builders are supported: ${ ALLOWED_BUILDERS . join ( ',' ) } .` ,
83+ `Currently, only the following builders are supported: ${ ALLOWED_BUILDERS . join ( "," ) } .` ,
8484 ) ;
8585 }
8686}
@@ -230,9 +230,9 @@ export const isMain = (meta: ImportMeta) => {
230230 return process . argv [ 1 ] === fileURLToPath ( meta . url ) ;
231231} ;
232232
233- export const outputBundleExists = ( ) => {
233+ export const outputBundleExists = ( ) => {
234234 const outputBundleDir = resolve ( ".apphosting" ) ;
235- if ( existsSync ( outputBundleDir ) ) {
235+ if ( existsSync ( outputBundleDir ) ) {
236236 return true ;
237237 }
238238 return false ;
0 commit comments