File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -399,7 +399,11 @@ export namespace Project {
399399 const data = fromRow ( row )
400400 return yield * Effect . forEach (
401401 data . sandboxes ,
402- ( dir ) => fsys . isDir ( dir ) . pipe ( Effect . orDie , Effect . map ( ( ok ) => ( ok ? dir : undefined ) ) ) ,
402+ ( dir ) =>
403+ fsys . isDir ( dir ) . pipe (
404+ Effect . orDie ,
405+ Effect . map ( ( ok ) => ( ok ? dir : undefined ) ) ,
406+ ) ,
403407 { concurrency : "unbounded" } ,
404408 ) . pipe ( Effect . map ( ( arr ) => arr . filter ( ( x ) : x is string => x !== undefined ) ) )
405409 } )
Original file line number Diff line number Diff line change @@ -349,7 +349,9 @@ describe("Project.update", () => {
349349 const { project } = await Project . fromDirectory ( tmp . path )
350350
351351 let eventPayload : any = null
352- const on = ( data : any ) => { eventPayload = data }
352+ const on = ( data : any ) => {
353+ eventPayload = data
354+ }
353355 GlobalBus . on ( "event" , on )
354356
355357 try {
You can’t perform that action at this time.
0 commit comments