We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03d889c commit b808d2eCopy full SHA for b808d2e
CHANGELOG.md
@@ -10,7 +10,7 @@
10
11
##### Bug Fixes
12
13
-- None.
+- A clean build is no longer required when a file is deleted from the scanned project.
14
15
## 3.0.0 (2024-12-27)
16
Sources/Indexer/SourceFileCollector.swift
@@ -1,7 +1,6 @@
1
import Configuration
2
import Foundation
3
import Logger
4
-import Shared
5
import SourceGraph
6
import SwiftIndexStore
7
import SystemPackage
@@ -43,7 +42,8 @@ public struct SourceFileCollector {
43
42
44
if !isExcluded(file) {
45
guard file.exists else {
46
- throw PeripheryError.pathDoesNotExist(path: file.string)
+ logger.debug("Source file does not exist: \(file.string)")
+ return nil
47
}
48
49
let module = try indexStore.moduleName(for: unit)
0 commit comments