We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cddd8b2 commit 45929a7Copy full SHA for 45929a7
src/dlx-binary.ts
@@ -337,7 +337,7 @@ async function writeMetadata(
337
url,
338
},
339
})
340
- } catch (error) {
+ } catch {
341
// Silently ignore manifest write errors - not critical.
342
// The per-directory metadata is the source of truth for now.
343
}
src/dlx-manifest.ts
@@ -121,8 +121,7 @@ export class DlxManifest {
121
122
constructor(options: DlxManifestOptions = {}) {
123
this.manifestPath =
124
- options.manifestPath ??
125
- path.join(getSocketDlxDir(), MANIFEST_FILE_NAME)
+ options.manifestPath ?? path.join(getSocketDlxDir(), MANIFEST_FILE_NAME)
126
this.lockPath = `${this.manifestPath}.lock`
127
128
0 commit comments