Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/next/src/build/swc/generated-native.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,10 +273,6 @@ export interface StackFrame {
column?: number
methodName?: string
}
export function projectGetSourceMap(
project: { __napiType: 'Project' },
filePath: string
): Promise<string | null>
export function projectTraceSource(
project: { __napiType: 'Project' },
frame: StackFrame
Expand All @@ -285,6 +281,10 @@ export function projectGetSourceForAsset(
project: { __napiType: 'Project' },
filePath: string
): Promise<string | null>
export function projectGetSourceMap(
project: { __napiType: 'Project' },
filePath: string
): Promise<string | null>
/** Runs exit handlers for the project registered using the [`ExitHandler`] API. */
export function projectOnExit(project: { __napiType: 'Project' }): Promise<void>
export function rootTaskDispose(rootTask: { __napiType: 'RootTask' }): void
Expand Down
4 changes: 1 addition & 3 deletions turbopack/crates/turbo-tasks-backend/src/backend/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -405,9 +405,7 @@ impl TurboTasksBackendInner {
drop(task);
if !task_ids_to_schedule.is_empty() {
let mut queue = AggregationUpdateQueue::new();
queue.push(AggregationUpdateJob::FindAndScheduleDirty {
task_ids: task_ids_to_schedule,
});
queue.extend_find_and_schedule_dirty(task_ids_to_schedule);
queue.execute(&mut ctx);
}

Expand Down
Loading
Loading