Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 431c82a186 | |||
| 05184179a4 | |||
| f15ab3a6f9 | |||
| 67d29a8e77 | |||
| 0e1db4bb85 | |||
| 7a1c2d82b9 | |||
| 9f5e4ad76e | |||
| 4feb074c03 | |||
| 95e4f1f036 | |||
| eaa66dff1d |
36
changelog.md
36
changelog.md
@@ -1,5 +1,41 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2026-03-05 - 4.1.26 - fix(compiler)
|
||||||
|
fsync output directories after unpack to avoid XFS delayed logging causing corrupt or invisible directory entries during subsequent TypeScript emits
|
||||||
|
|
||||||
|
- Force fsync on each successful output directory (open, fsync, close) before the next compilation step.
|
||||||
|
- Prevents XFS delayed logging from making directory entries invisible or corrupted during TypeScript emit operations.
|
||||||
|
- Operation swallows errors if a directory doesn't exist yet; non-breaking fix with small additional IO.
|
||||||
|
|
||||||
|
## 2026-03-05 - 4.1.25 - fix(mod_unpack)
|
||||||
|
flush directory metadata on XFS before reading and use readdirSync-based iteration to avoid missing entries when unpacking
|
||||||
|
|
||||||
|
- Call fs.fsyncSync on destination and nested directory file descriptors to force XFS to commit delayed directory metadata (addresses XFS CIL delayed logging causing incomplete readdir/opendir results).
|
||||||
|
- Replace opendirSync/readSync loops with readdirSync-based iteration for simpler, deterministic directory listing.
|
||||||
|
- Remove unused moved counter and update diagnostic log to report nestedEntries.length for moved entry count.
|
||||||
|
|
||||||
|
## 2026-03-05 - 4.1.24 - fix(mod_unpack)
|
||||||
|
iterate directories with opendirSync/readSync to avoid missing entries on XFS and ensure directory handles are closed
|
||||||
|
|
||||||
|
- Replaced readdirSync loops with opendirSync + readSync for destination and nested directories to provide a single stable directory handle during iteration
|
||||||
|
- Added explicit closeSync() calls to close directory handles and avoid resource leaks
|
||||||
|
- Avoids partial results/missed entries that can occur when repeatedly calling readdirSync (observed on XFS with delayed metadata)
|
||||||
|
- Preserves existing renameSync move logic and increments moved counter while cleaning up the now-empty nested directory
|
||||||
|
|
||||||
|
## 2026-03-05 - 4.1.23 - fix(mod_unpack)
|
||||||
|
handle partial readdirSync results when moving nested directory entries and add diagnostic log
|
||||||
|
|
||||||
|
- Loop over readdirSync results until the nested directory is empty to avoid missing entries from partial reads
|
||||||
|
- Count moved entries and print a diagnostic message with the final destination entry count
|
||||||
|
- Keep removal of the now-empty nested directory (fs.rmdirSync) after moving contents
|
||||||
|
|
||||||
|
## 2026-03-05 - 4.1.22 - fix(mod_compiler)
|
||||||
|
improve logging of successful output directories to include a sorted list of entries and use a shortened relative path
|
||||||
|
|
||||||
|
- Adds shortDir variable to display relative path instead of repeating inline replace(this.cwd + '/')
|
||||||
|
- Appends a sorted, comma-separated list of directory entries to the log output for easier inspection
|
||||||
|
- Change located in ts/mod_compiler/classes.tscompiler.ts
|
||||||
|
|
||||||
## 2026-03-05 - 4.1.21 - fix(compiler)
|
## 2026-03-05 - 4.1.21 - fix(compiler)
|
||||||
log emitted files written outside expected destination directory for diagnostics
|
log emitted files written outside expected destination directory for diagnostics
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@git.zone/tsbuild",
|
"name": "@git.zone/tsbuild",
|
||||||
"version": "4.1.21",
|
"version": "4.1.26",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A tool for compiling TypeScript files using the latest nightly features, offering flexible APIs and a CLI for streamlined development.",
|
"description": "A tool for compiling TypeScript files using the latest nightly features, offering flexible APIs and a CLI for streamlined development.",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
|||||||
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@git.zone/tsbuild',
|
name: '@git.zone/tsbuild',
|
||||||
version: '4.1.21',
|
version: '4.1.26',
|
||||||
description: 'A tool for compiling TypeScript files using the latest nightly features, offering flexible APIs and a CLI for streamlined development.'
|
description: 'A tool for compiling TypeScript files using the latest nightly features, offering flexible APIs and a CLI for streamlined development.'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -345,7 +345,8 @@ export class TsCompiler {
|
|||||||
try {
|
try {
|
||||||
const entries = fs.readdirSync(prevDir);
|
const entries = fs.readdirSync(prevDir);
|
||||||
const dirs = entries.filter(e => { try { return fs.statSync(prevDir + '/' + e).isDirectory(); } catch { return false; } });
|
const dirs = entries.filter(e => { try { return fs.statSync(prevDir + '/' + e).isDirectory(); } catch { return false; } });
|
||||||
console.log(` 📋 [${label}] ${prevDir.replace(this.cwd + '/', '')}: ${entries.length} entries, ${dirs.length} dirs`);
|
const shortDir = prevDir.replace(this.cwd + '/', '');
|
||||||
|
console.log(` 📋 [${label}] ${shortDir}: ${entries.length} entries, ${dirs.length} dirs [${entries.sort().join(', ')}]`);
|
||||||
} catch {
|
} catch {
|
||||||
console.log(` 📋 [${label}] ${prevDir.replace(this.cwd + '/', '')}: MISSING!`);
|
console.log(` 📋 [${label}] ${prevDir.replace(this.cwd + '/', '')}: MISSING!`);
|
||||||
}
|
}
|
||||||
@@ -404,6 +405,20 @@ export class TsCompiler {
|
|||||||
successfulOutputDirs.push(destDir);
|
successfulOutputDirs.push(destDir);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Fsync all output directories to force XFS metadata commit
|
||||||
|
// before the next compilation step. Without this, XFS delayed logging
|
||||||
|
// can cause directory entries from previous compilations to become
|
||||||
|
// invisible or corrupted during subsequent TypeScript emit operations.
|
||||||
|
for (const dir of successfulOutputDirs) {
|
||||||
|
try {
|
||||||
|
const fd = fs.openSync(dir, 'r');
|
||||||
|
fs.fsyncSync(fd);
|
||||||
|
fs.closeSync(fd);
|
||||||
|
} catch {
|
||||||
|
// Directory might not exist yet
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Diagnostic: log all output directory states after each compilation
|
// Diagnostic: log all output directory states after each compilation
|
||||||
if (!isQuiet && !isJson) {
|
if (!isQuiet && !isJson) {
|
||||||
for (const prevDir of successfulOutputDirs) {
|
for (const prevDir of successfulOutputDirs) {
|
||||||
|
|||||||
@@ -107,6 +107,17 @@ export class TsUnpacker {
|
|||||||
|
|
||||||
const nestedPath = this.getNestedPath();
|
const nestedPath = this.getNestedPath();
|
||||||
|
|
||||||
|
// Force XFS to flush pending directory metadata before reading.
|
||||||
|
// XFS delayed logging (CIL) can defer metadata commits, causing
|
||||||
|
// readdirSync/opendirSync to return incomplete results immediately
|
||||||
|
// after TypeScript's emit() creates files via writeFileSync.
|
||||||
|
const destFd = fs.openSync(this.destDir, 'r');
|
||||||
|
fs.fsyncSync(destFd);
|
||||||
|
fs.closeSync(destFd);
|
||||||
|
const nestedFd = fs.openSync(nestedPath, 'r');
|
||||||
|
fs.fsyncSync(nestedFd);
|
||||||
|
fs.closeSync(nestedFd);
|
||||||
|
|
||||||
// Step 1: Remove sibling entries (everything in dest except the source folder)
|
// Step 1: Remove sibling entries (everything in dest except the source folder)
|
||||||
const destEntries = fs.readdirSync(this.destDir);
|
const destEntries = fs.readdirSync(this.destDir);
|
||||||
for (const entry of destEntries) {
|
for (const entry of destEntries) {
|
||||||
@@ -127,6 +138,10 @@ export class TsUnpacker {
|
|||||||
// Step 3: Remove the now-empty nested directory
|
// Step 3: Remove the now-empty nested directory
|
||||||
fs.rmdirSync(nestedPath);
|
fs.rmdirSync(nestedPath);
|
||||||
|
|
||||||
|
// Diagnostic: verify final state
|
||||||
|
const finalEntries = fs.readdirSync(this.destDir);
|
||||||
|
console.log(` 📦 Unpacked ${this.sourceFolderName}: moved ${nestedEntries.length} entries, final: ${finalEntries.length} entries`);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user