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
2 changes: 1 addition & 1 deletion packages/adapter-javascript/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Expected outputs
- vendor/js-debug/watchdog.js (optional sidecar — copied if present)
- vendor/js-debug/package.json (forces `type: 'commonjs'`)
- vendor/js-debug/vsDebugServer.js.sha256
- vendor/js-debug/manifest.json (metadata: source, repo, version, asset, sha256, fetchedAt)
- vendor/js-debug/manifest.json (metadata: source, repo, version, asset, sha256)
- vendor/ subdirectory (contains the js-debug vendored files)

Determinism and safety
Expand Down
3 changes: 1 addition & 2 deletions packages/adapter-javascript/scripts/build-js-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -350,8 +350,7 @@ async function writeManifest({ source, repo, version, asset, sha256, original })
version,
asset,
sha256,
...(original ? { original } : {}),
fetchedAt: new Date().toISOString()
...(original ? { original } : {})
};
await fsp.writeFile(MANIFEST_FILE, JSON.stringify(manifest, null, 2) + '\n', 'utf8');
}
Expand Down
3 changes: 1 addition & 2 deletions packages/codelldb-common/scripts/vendor-codelldb.js
Original file line number Diff line number Diff line change
Expand Up @@ -533,8 +533,7 @@ async function extractAndCopyFiles(vsixPath, platform, platformInfo, vsixName) {
const versionFile = path.join(VENDOR_DIR, platformInfo.targetDir, 'version.json');
await fs.writeFile(versionFile, JSON.stringify({
version: CODELLDB_VERSION,
platform: platform,
downloadedAt: new Date().toISOString()
platform: platform
}, null, 2));

log(`Success: ${platform} vendored successfully`);
Expand Down
Loading