Skip to content

Commit

Permalink
make function sync (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
amiryonatan authored Dec 18, 2023
1 parent 03310e3 commit c7a9d87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/repluggableAppDebug/repluggableAppDebug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ function mapApiToEntryPoint(allPackages: EntryPoint[]) {
return apiToEntryPoint
}

const getAPIOrEntryPointsDependencies = async (
const getAPIOrEntryPointsDependencies = (
apisOrEntryPointsNames: string[],
entryPoints: EntryPoint[]
): Promise<{ entryPoints: EntryPoint[]; apis: AnySlotKey[] }> => {
): { entryPoints: EntryPoint[]; apis: AnySlotKey[] } => {
const apiToEntryPoint = mapApiToEntryPoint(entryPoints)

const loadedEntryPoints = new Set<string>()
Expand Down

0 comments on commit c7a9d87

Please sign in to comment.