@d1g1tal/tsbuild 1.7.2 → 1.7.3
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 +18 -0
- package/dist/{NLBQBJSZ.js → FK6GUMLW.js} +3 -1
- package/dist/tsbuild.js +2 -2
- package/dist/type-script-project.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## [1.7.3](https://github.com/D1g1talEntr0py/tsbuild/compare/v1.7.2...v1.7.3) (2026-04-04)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* update esbuild and remaining dependencies (d9fd8e31d2598cc8efc657eb594cb7c8985767d8)
|
|
6
|
+
- update esbuild from ^0.27.4 to ^0.28.0
|
|
7
|
+
- update @types/node from ^25.5.0 to ^25.5.2
|
|
8
|
+
- update eslint from ^10.1.0 to ^10.2.0
|
|
9
|
+
- update pnpm-lock.yaml to reflect new dependency versions
|
|
10
|
+
- add stableTypeOrdering: true to tsconfig.json
|
|
11
|
+
- change moduleResolution: Bundler to module: preserve in tsconfig.json
|
|
12
|
+
- add clarifying comment about global regex usage in src/type-script-project.ts
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Miscellaneous Chores
|
|
16
|
+
|
|
17
|
+
* **docs:** remove AI generate document unrelated to the project (3f31ad1ce93deff047a859961514e3978633fc6a)
|
|
18
|
+
|
|
1
19
|
## [1.7.2](https://github.com/D1g1talEntr0py/tsbuild/compare/v1.7.1...v1.7.2) (2026-04-01)
|
|
2
20
|
|
|
3
21
|
### Bug Fixes
|
|
@@ -387,6 +387,7 @@ var BuildError = class extends Error {
|
|
|
387
387
|
this.name = "BuildError";
|
|
388
388
|
Error.captureStackTrace(this, this.constructor);
|
|
389
389
|
}
|
|
390
|
+
code;
|
|
390
391
|
};
|
|
391
392
|
var TypeCheckError = class extends BuildError {
|
|
392
393
|
/**
|
|
@@ -399,6 +400,7 @@ var TypeCheckError = class extends BuildError {
|
|
|
399
400
|
this.diagnostics = diagnostics;
|
|
400
401
|
this.name = "TypeCheckError";
|
|
401
402
|
}
|
|
403
|
+
diagnostics;
|
|
402
404
|
};
|
|
403
405
|
var BundleError = class extends BuildError {
|
|
404
406
|
/**
|
|
@@ -2135,7 +2137,7 @@ var _TypeScriptProject = class _TypeScriptProject {
|
|
|
2135
2137
|
return Files.empty(this.buildConfiguration.outDir);
|
|
2136
2138
|
}
|
|
2137
2139
|
async build() {
|
|
2138
|
-
Logger.header(`${tsLogo} tsbuild v${"1.7.
|
|
2140
|
+
Logger.header(`${tsLogo} tsbuild v${"1.7.3"}${this.configuration.compilerOptions.incremental && this.configuration.buildCache?.isValid() ? " [incremental]" : ""}`);
|
|
2139
2141
|
try {
|
|
2140
2142
|
const processes = [];
|
|
2141
2143
|
const filesWereEmitted = await this.typeCheck();
|
package/dist/tsbuild.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import {
|
|
3
3
|
BuildError,
|
|
4
4
|
TypeScriptProject
|
|
5
|
-
} from "./
|
|
5
|
+
} from "./FK6GUMLW.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.3");
|
|
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.3",
|
|
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",
|
|
@@ -45,16 +45,16 @@
|
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@d1g1tal/watchr": "^1.0.5",
|
|
48
|
-
"esbuild": "^0.
|
|
48
|
+
"esbuild": "^0.28.0",
|
|
49
49
|
"magic-string": "^0.30.21"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@eslint/js": "^10.0.1",
|
|
53
|
-
"@types/node": "^25.5.
|
|
53
|
+
"@types/node": "^25.5.2",
|
|
54
54
|
"@typescript-eslint/eslint-plugin": "^8.58.0",
|
|
55
55
|
"@typescript-eslint/parser": "^8.58.0",
|
|
56
56
|
"@vitest/coverage-v8": "^4.1.2",
|
|
57
|
-
"eslint": "^10.
|
|
57
|
+
"eslint": "^10.2.0",
|
|
58
58
|
"eslint-plugin-jsdoc": "^62.9.0",
|
|
59
59
|
"fs-monkey": "^1.1.0",
|
|
60
60
|
"memfs": "^4.57.1",
|