@d1g1tal/tsbuild 1.7.3 → 1.7.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,34 @@
|
|
|
1
|
+
## [1.7.5](https://github.com/D1g1talEntr0py/tsbuild/compare/v1.7.4...v1.7.5) (2026-04-07)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **deps:** update vitest to latest to resolve CVE-2026-39363 (4bd805572667f2b5e778c19ac70e5971e27f0c08)
|
|
6
|
+
Updates vitest to the latest version to mitigate CVE-2026-39363 inherently through the natural dependency updates.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Miscellaneous Chores
|
|
10
|
+
|
|
11
|
+
* **deps:** enforce latest esbuild and vite versions (2894d8dea77f3c8743854cdf56d839705ab604f8)
|
|
12
|
+
Overrides esbuild and vite transient dependencies. Ensures vitest allows the use of the latest esbuild version, as oxc does not support typescript decorators.
|
|
13
|
+
|
|
14
|
+
## [1.7.4](https://github.com/D1g1talEntr0py/tsbuild/compare/v1.7.3...v1.7.4) (2026-04-06)
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **typescript:** address regression where 'noEmit' would not catch all type errors (ece0de27a4e3019c3dfc437e40894b61a7ac04a3)
|
|
19
|
+
- collect syntatic, semantic, and declaration diagnostics independently when 'noEmit' is true
|
|
20
|
+
- emit correctly within 'noEmit' mode to guarantee the incrementally updated tsbuildinfo cache is correctly generated
|
|
21
|
+
- adjoin extensive test coverage evaluating diagnostic consistency against varied declaration violations
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Code Refactoring
|
|
25
|
+
|
|
26
|
+
* **types:** add explicit return types to support isolateddeclarations (ca0b2ee7757de487a5bf64d36fd346faf35adba4)
|
|
27
|
+
- add explicit return types to functions across constants, decorators, and internal libraries
|
|
28
|
+
- annotate return types on file manager, cache, logger, process manager, and path utilities
|
|
29
|
+
- ensure process manager exit handler properly invokes close on registered instances
|
|
30
|
+
- update typescript configuration to enable isolateddeclarations for the project
|
|
31
|
+
|
|
1
32
|
## [1.7.3](https://github.com/D1g1talEntr0py/tsbuild/compare/v1.7.2...v1.7.3) (2026-04-04)
|
|
2
33
|
|
|
3
34
|
### Bug Fixes
|
|
@@ -2137,7 +2137,7 @@ var _TypeScriptProject = class _TypeScriptProject {
|
|
|
2137
2137
|
return Files.empty(this.buildConfiguration.outDir);
|
|
2138
2138
|
}
|
|
2139
2139
|
async build() {
|
|
2140
|
-
Logger.header(`${tsLogo} tsbuild v${"1.7.
|
|
2140
|
+
Logger.header(`${tsLogo} tsbuild v${"1.7.5"}${this.configuration.compilerOptions.incremental && this.configuration.buildCache?.isValid() ? " [incremental]" : ""}`);
|
|
2141
2141
|
try {
|
|
2142
2142
|
const processes = [];
|
|
2143
2143
|
const filesWereEmitted = await this.typeCheck();
|
|
@@ -2175,19 +2175,36 @@ var _TypeScriptProject = class _TypeScriptProject {
|
|
|
2175
2175
|
}
|
|
2176
2176
|
async typeCheck() {
|
|
2177
2177
|
await this.fileManager.initialize();
|
|
2178
|
-
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2178
|
+
let allDiagnostics;
|
|
2179
|
+
if (this.configuration.compilerOptions.noEmit) {
|
|
2180
|
+
performance2.mark("diagnostics:start");
|
|
2181
|
+
allDiagnostics = [
|
|
2182
|
+
...this.builderProgram.getConfigFileParsingDiagnostics(),
|
|
2183
|
+
...this.builderProgram.getOptionsDiagnostics(),
|
|
2184
|
+
...this.builderProgram.getSyntacticDiagnostics(),
|
|
2185
|
+
...this.builderProgram.getGlobalDiagnostics(),
|
|
2186
|
+
...this.builderProgram.getSemanticDiagnostics(),
|
|
2187
|
+
...this.configuration.compilerOptions.declaration ? this.builderProgram.getDeclarationDiagnostics() : []
|
|
2188
|
+
];
|
|
2189
|
+
addPerformanceStep("Diagnostics", _TypeScriptProject.elapsed("diagnostics:start"));
|
|
2190
|
+
performance2.mark("emit:start");
|
|
2191
|
+
this.builderProgram.emit(void 0, this.fileManager.fileWriter, void 0, true);
|
|
2192
|
+
addPerformanceStep("Emit", _TypeScriptProject.elapsed("emit:start"));
|
|
2193
|
+
} else {
|
|
2194
|
+
performance2.mark("emit:start");
|
|
2195
|
+
const { diagnostics } = this.builderProgram.emit(void 0, this.fileManager.fileWriter, void 0, true);
|
|
2196
|
+
addPerformanceStep("Emit", _TypeScriptProject.elapsed("emit:start"));
|
|
2197
|
+
performance2.mark("diagnostics:start");
|
|
2198
|
+
allDiagnostics = [...this.builderProgram.getSemanticDiagnostics(), ...diagnostics];
|
|
2199
|
+
addPerformanceStep("Diagnostics", _TypeScriptProject.elapsed("diagnostics:start"));
|
|
2200
|
+
}
|
|
2184
2201
|
if (allDiagnostics.length > 0) {
|
|
2185
2202
|
_TypeScriptProject.handleTypeErrors("Type-checking failed", allDiagnostics, this.directory);
|
|
2186
2203
|
}
|
|
2187
2204
|
performance2.mark("finalize:start");
|
|
2188
|
-
const
|
|
2205
|
+
const emitted = this.fileManager.finalize();
|
|
2189
2206
|
addPerformanceStep("Finalize", _TypeScriptProject.elapsed("finalize:start"));
|
|
2190
|
-
return
|
|
2207
|
+
return emitted || !this.configuration.compilerOptions.declaration;
|
|
2191
2208
|
}
|
|
2192
2209
|
async transpile() {
|
|
2193
2210
|
const plugins = [outputPlugin()];
|
package/dist/tsbuild.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import {
|
|
3
3
|
BuildError,
|
|
4
4
|
TypeScriptProject
|
|
5
|
-
} from "./
|
|
5
|
+
} from "./5BZX3OK7.js";
|
|
6
6
|
import "./JKGYA2AW.js";
|
|
7
7
|
|
|
8
8
|
// src/tsbuild.ts
|
|
@@ -30,7 +30,7 @@ if (help) {
|
|
|
30
30
|
process.exit(0);
|
|
31
31
|
}
|
|
32
32
|
if (version) {
|
|
33
|
-
console.log("1.7.
|
|
33
|
+
console.log("1.7.5");
|
|
34
34
|
process.exit(0);
|
|
35
35
|
}
|
|
36
36
|
var typeScriptOptions = {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@d1g1tal/tsbuild",
|
|
3
3
|
"author": "D1g1talEntr0py",
|
|
4
|
-
"version": "1.7.
|
|
4
|
+
"version": "1.7.5",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "A fast, ESM-only TypeScript build tool combining the TypeScript API for type checking and declaration generation, esbuild for bundling, and SWC for decorator metadata.",
|
|
7
7
|
"homepage": "https://github.com/D1g1talEntr0py/tsbuild#readme",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@types/node": "^25.5.2",
|
|
54
54
|
"@typescript-eslint/eslint-plugin": "^8.58.0",
|
|
55
55
|
"@typescript-eslint/parser": "^8.58.0",
|
|
56
|
-
"@vitest/coverage-v8": "^4.1.
|
|
56
|
+
"@vitest/coverage-v8": "^4.1.3",
|
|
57
57
|
"eslint": "^10.2.0",
|
|
58
58
|
"eslint-plugin-jsdoc": "^62.9.0",
|
|
59
59
|
"fs-monkey": "^1.1.0",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"tsx": "^4.21.0",
|
|
62
62
|
"typescript": "^6.0.2",
|
|
63
63
|
"typescript-eslint": "^8.58.0",
|
|
64
|
-
"vitest": "^4.1.
|
|
64
|
+
"vitest": "^4.1.3"
|
|
65
65
|
},
|
|
66
66
|
"peerDependencies": {
|
|
67
67
|
"typescript": ">=5.6.3"
|